Mixonomer/.vscode/launch.json

36 lines
1.0 KiB
JSON
Raw Normal View History

{
// 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": "music.music",
"FLASK_ENV": "development"
},
"envFile": "${workspaceFolder}/.env",
"args": [
"run",
"--no-debugger"
],
"jinja": true
2021-07-05 23:31:13 +01:00
},
{
"command": "npm run devbuild",
"name": "Js: Build Dev",
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm run build",
"name": "Js: Build Release",
"request": "launch",
"type": "node-terminal"
}
]
}