autopeering/.vscode/launch.json

54 lines
1.2 KiB
JSON
Raw Normal View History

{
"configurations": [
2022-12-21 21:21:57 +01:00
{
"name": "Python: Flask-node",
"type": "python",
"request": "launch",
"module": "flask",
"cwd": "${workspaceFolder}/nodes/",
"env": {
"FLASK_APP": "main.py",
"FLASK_DEBUG": "1",
"FLASK_RUN_HOST": "::",
"FLASK_RUN_PORT": "8142"
},
"args": ["run", "--no-debugger"],
"jinja": true,
"justMyCode": true
},
{
"name": "Python: Flask-backend",
"type": "python",
"request": "launch",
"module": "flask",
"cwd": "${workspaceFolder}/web/",
2022-12-21 21:21:57 +01:00
"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}",
2022-12-03 23:26:04 +01:00
"cwd": "${workspaceFolder}/web/",
"console": "integratedTerminal",
2022-12-03 23:26:04 +01:00
"justMyCode": true
},
{
"name": "Python: backend",
"type": "python",
"request": "launch",
"program": "backend/main.py",
"cwd": "${workspaceFolder}/web/",
"justMyCode": true
}
]
}