Skip to content

Commit

Permalink
Add workers project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Mozzo1000 committed Jul 23, 2024
1 parent f8ba8d1 commit be5fc60
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 0 deletions.
4 changes: 4 additions & 0 deletions workers/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Workers
This folder contains all code for the import workers and other background tasks that integrate with BookLogr.

See the wiki article on [Background tasks](https://github.com/Mozzo1000/booklogr/wiki/Background-tasks) for more information.
28 changes: 28 additions & 0 deletions workers/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions workers/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[tool.poetry]
name = "workers"
version = "0.1.0"
description = ""
authors = ["Andreas Backström <[email protected]>"]
readme = "README.md"
packages = [{include = "src"}]

[tool.poetry.dependencies]
python = "^3.12"
psycopg2 = "^2.9.9"


[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

0 comments on commit be5fc60

Please sign in to comment.