mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 00:07:22 +00:00
58 lines
1.6 KiB
JSON
58 lines
1.6 KiB
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: Flask",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "flask",
|
|
"env": {
|
|
"FLASK_APP": "project",
|
|
"FLASK_ENV": "development",
|
|
"FLASK_DEBUG": "1"
|
|
},
|
|
"args": [
|
|
"run",
|
|
"--no-debugger"
|
|
],
|
|
"justMyCode": false,
|
|
"jinja": true
|
|
},{
|
|
"name": "Python: Flask HTTPS",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "flask",
|
|
"env": {
|
|
"FLASK_APP": "project",
|
|
"FLASK_ENV": "development",
|
|
"FLASK_DEBUG": "1"
|
|
},
|
|
"args": [
|
|
"run",
|
|
"--port=443",
|
|
"--no-debugger",
|
|
"--cert=127.0.0.1.crt",
|
|
"--key=127.0.0.1.key"
|
|
],
|
|
"sudo": true,
|
|
"justMyCode": false,
|
|
"jinja": true
|
|
},
|
|
{
|
|
"name": "Python: Aktuelle Datei",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "${file}",
|
|
"console": "integratedTerminal"
|
|
},
|
|
{
|
|
"name": "Debug Unit Test",
|
|
"type": "python",
|
|
"request": "test",
|
|
"justMyCode": false,
|
|
}
|
|
]
|
|
} |