Files
asknavidrome-cafofo/.vscode/launch.json
2025-09-08 17:13:09 +01:00

42 lines
1.3 KiB
JSON

{
// 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: Current File",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Python: Flask - AskNavidrome",
"type": "debugpy",
"request": "launch",
"module": "flask",
"env": {
"FLASK_APP": "skill/app.py",
"FLASK_ENV": "development",
"FLASK_DEBUG": "0",
"NAVI_SKILL_ID": "<skill_id>",
"NAVI_SONG_COUNT": "50",
"NAVI_URL": "https://<url>",
"NAVI_USER": "<username>",
"NAVI_PASS": "<password>",
"NAVI_PORT": "443",
"NAVI_API_PATH": "/rest",
"NAVI_API_VER": "1.16.1",
"NAVI_DEBUG": "3"
},
"args": [
"run",
"--no-debugger",
"--no-reload"
],
"jinja": true
}
]
}