jedoist-client/.vscode/launch.json

17 lines
654 B
JSON
Raw Normal View History

2024-06-05 23:22:58 +03:00
{
// 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"
}
]
}