autopeering/.vscode/launch.json
lare 2bf2174763 "small changes"
- remove http only in login.html
- extract PeeringManager into separate file
- add "progress meter" for "used" to "available" peerings
2022-12-12 19:40:30 +01:00

32 lines
839 B
JSON

{
"configurations": [
{
"name": "Python: Flask-backend",
"type": "python",
"request": "launch",
"module": "flask",
"cwd": "${workspaceFolder}/web/",
"env": { "FLASK_APP": "backend/main.py", "FLASK_DEBUG": "1", "FLASK_RUN_HOST": "0.0.0.0", "FLASK_RUN_PORT": "8042" },
"args": ["run", "--no-debugger"],
"jinja": true,
"justMyCode": true
},
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"cwd": "${workspaceFolder}/web/",
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Python: backend",
"type": "python",
"request": "launch",
"program": "backend/main.py",
"cwd": "${workspaceFolder}/web/",
"justMyCode": true
}
]
}