mirror of
https://github.com/velocitatem/cvfs.git
synced 2026-05-31 16:53:38 +00:00
41 lines
957 B
JSON
41 lines
957 B
JSON
{
|
|
"name": "backend-fastapi",
|
|
"root": "apps/backend/fastapi",
|
|
"sourceRoot": "apps/backend/fastapi",
|
|
"projectType": "application",
|
|
"implicitDependencies": ["alveslib"],
|
|
"targets": {
|
|
"dev": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"cwd": "apps/backend/fastapi",
|
|
"command": "python3.12 server.py"
|
|
}
|
|
},
|
|
"build": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "python3.12 -m compileall apps/backend/fastapi"
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": ".venv/bin/ruff check apps/backend/fastapi"
|
|
}
|
|
},
|
|
"typecheck": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": ".venv/bin/mypy apps/backend/fastapi"
|
|
}
|
|
},
|
|
"test": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": ".venv/bin/pytest apps/backend/fastapi -v"
|
|
}
|
|
}
|
|
}
|
|
}
|