17 lines
654 B
JSON
17 lines
654 B
JSON
|
{
|
||
|
// Use IntelliSense to learn about possible attributes.
|
||
|
// Hover to view descriptions of existing attributes.
|
||
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||
|
"version": "0.2.0",
|
||
|
"configurations": [
|
||
|
{
|
||
|
"name": "Python Debugger: main.py",
|
||
|
"type": "debugpy",
|
||
|
"request": "launch",
|
||
|
"program": "~/.local/bin/gunicorn",
|
||
|
//"console": "integratedTerminal",
|
||
|
"args": ["main:app", "--chdir=src", "--bind=127.0.0.1:8080", "--reload", "-w", "1", "--timeout=7200"],
|
||
|
"envFile": "${workspaceFolder}/local.env"
|
||
|
}
|
||
|
]
|
||
|
}
|