feat: added initial config

This commit is contained in:
2024-10-10 15:51:41 +02:00
parent 86e82a4d94
commit 5e990a615e
26 changed files with 694 additions and 4 deletions

35
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,35 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Run",
"type": "python",
"request": "launch",
"module": "uvicorn",
"args": ["app.main:app", "--reload", "--port", "9000"],
"jinja": true,
"justMyCode": true,
"env": {
"PYDEVD_DISABLE_FILE_VALIDATION": "1"
}
},
{
"name": "Migrate",
"type": "python",
"request": "launch",
"module": "alembic",
"args": ["upgrade", "head"],
"jinja": true,
"justMyCode": true
},
{
"name": "Make Migrations",
"type": "python",
"request": "launch",
"module": "alembic",
"args": ["revision", "--autogenerate"],
"jinja": true,
"justMyCode": true
}
]
}