Initial commit

This commit is contained in:
Daniel Alves Rösel
2026-04-02 18:47:14 +02:00
committed by GitHub
commit 90ad5e0260
94 changed files with 7797 additions and 0 deletions

40
apps/worker/project.json Normal file
View File

@@ -0,0 +1,40 @@
{
"name": "worker",
"root": "apps/worker",
"sourceRoot": "apps/worker",
"projectType": "application",
"implicitDependencies": ["alveslib"],
"targets": {
"dev": {
"executor": "nx:run-commands",
"options": {
"cwd": "apps/worker",
"command": "celery -A worker:app worker --loglevel=info"
}
},
"build": {
"executor": "nx:run-commands",
"options": {
"command": "python3.12 -m compileall apps/worker"
}
},
"lint": {
"executor": "nx:run-commands",
"options": {
"command": ".venv/bin/ruff check apps/worker"
}
},
"typecheck": {
"executor": "nx:run-commands",
"options": {
"command": ".venv/bin/mypy apps/worker"
}
},
"test": {
"executor": "nx:run-commands",
"options": {
"command": ".venv/bin/pytest apps/worker -v"
}
}
}
}