You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
500 B
Django/Jinja
27 lines
500 B
Django/Jinja
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "{{ project_name }}: FastAPI",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"module": "uvicorn",
|
|
"args": [
|
|
"main:app",
|
|
"--reload",
|
|
"--host",
|
|
"127.0.0.1",
|
|
"--port",
|
|
"8000"
|
|
],
|
|
"cwd": "${workspaceFolder}",
|
|
"env": {
|
|
"APP_ENV": "dev",
|
|
"APP_ENV_DIR": "${workspaceFolder}"
|
|
},
|
|
"jinja": true,
|
|
"justMyCode": true
|
|
}
|
|
]
|
|
}
|