music-assistant-server

852 BJSON
launch.json
852 B33 lines • json
1{
2  // Use IntelliSense to learn about possible attributes.
3  // Hover to view descriptions of existing attributes.
4  // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5  "version": "0.2.0",
6  "configurations": [
7    {
8      "name": "Music Assistant: Server",
9      "type": "debugpy",
10      "request": "launch",
11      "module": "music_assistant",
12      "justMyCode": false,
13      "args": ["--log-level", "debug"],
14      "env": { "PYTHONDEVMODE": "1" }
15    },
16    {
17      "name": "Music Assistant: Tests",
18      "type": "debugpy",
19      "request": "launch",
20      "module": "pytest",
21      "justMyCode": false,
22      "args": ["tests"]
23    },
24    {
25      "name": "Python Debugger: Current File",
26      "type": "debugpy",
27      "request": "launch",
28      "program": "${file}",
29      "console": "integratedTerminal"
30    }
31  ]
32}
33