mirror of
https://github.com/creyD/apilog.git
synced 2026-04-12 19:30:29 +02:00
36 lines
754 B
JSON
36 lines
754 B
JSON
{
|
|
"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
|
|
}
|
|
]
|
|
}
|