metube/.vscode/launch.json

27 lines
895 B
JSON
Raw Normal View History

2019-11-29 17:31:34 +00: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-12-03 20:32:07 +00:00
"name": "Python: MeTube",
2019-11-29 17:31:34 +00:00
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/app/main.py",
"windows": {
"env": {
"DOWNLOAD_DIR": "${env:USERPROFILE}/Downloads",
2022-01-25 21:56:17 +00:00
"STATE_DIR": "${env:TEMP}",
}
},
"osx": {
"env": {
"DOWNLOAD_DIR": "${env:HOME}/Downloads",
2022-01-25 21:56:17 +00:00
"STATE_DIR": "${env:TMPDIR}",
}
2019-11-29 17:31:34 +00:00
},
"console": "integratedTerminal"
}
]
}