Files
python/.vscode/launch.json

27 lines
781 B
JSON
Raw Normal View History

2019-04-16 18:19:04 -07: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": [
{
2019-04-26 16:03:42 +00:00
"name": "Python: Flask",
2019-04-16 18:19:04 -07:00
"type": "python",
"request": "launch",
2019-04-26 16:03:42 +00:00
"module": "flask",
"env": {
"FLASK_APP": "app.py",
"FLASK_ENV": "development",
"FLASK_DEBUG": "0"
},
"args": [
"run",
"--host","0.0.0.0",
"--port","9000",
"--no-debugger",
"--no-reload"
],
"jinja": true
2019-04-16 18:19:04 -07:00
}
]
}