mirror of
https://github.com/PhoenixTwoFive/karaoqueue.git
synced 2025-07-12 13:01:42 +02:00
Integrate dockerized Mongodb configuration
This commit is contained in:
24
backend/.vscode/launch.json
vendored
24
backend/.vscode/launch.json
vendored
@ -9,6 +9,7 @@
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"module": "flask",
|
||||
"preLaunchTask": "Launch MongoDB",
|
||||
"env": {
|
||||
"FLASK_APP": "app/main.py",
|
||||
"FLASK_ENV": "development",
|
||||
@ -19,7 +20,28 @@
|
||||
"--no-debugger",
|
||||
"--no-reload"
|
||||
],
|
||||
"jinja": true
|
||||
"jinja": true,
|
||||
"postDebugTask": "Stop MongoDB"
|
||||
},
|
||||
{
|
||||
"name": "Python: Flask (open to world)",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"module": "flask",
|
||||
"preLaunchTask": "Launch MongoDB",
|
||||
"env": {
|
||||
"FLASK_APP": "app/main.py",
|
||||
"FLASK_ENV": "development",
|
||||
"FLASK_DEBUG": "0"
|
||||
},
|
||||
"args": [
|
||||
"run",
|
||||
"--no-debugger",
|
||||
"--no-reload",
|
||||
"--host=0.0.0.0"
|
||||
],
|
||||
"jinja": true,
|
||||
"postDebugTask": "Stop MongoDB"
|
||||
}
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user