2021-06-19 12:54:24 +01: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": [
|
|
|
|
{
|
|
|
|
"name": "Python: Flask",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
|
|
|
"module": "flask",
|
|
|
|
"env": {
|
|
|
|
"FLASK_APP": "music.music",
|
2023-10-13 19:43:51 +01:00
|
|
|
"FLASK_ENV": "development",
|
|
|
|
"GOOGLE_CLOUD_PROJECT": "sarsooxyz"
|
2021-06-19 12:54:24 +01:00
|
|
|
},
|
|
|
|
"envFile": "${workspaceFolder}/.env",
|
|
|
|
"args": [
|
|
|
|
"run",
|
|
|
|
"--no-debugger"
|
|
|
|
],
|
2022-04-10 22:19:18 +01:00
|
|
|
"jinja": true,
|
|
|
|
"justMyCode": false
|
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"
|
2021-06-19 12:54:24 +01:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|