summaryrefslogtreecommitdiff
path: root/.vscode/launch.json
blob: 39142df5ab163c49225edecaa09eca225d6d003e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Debug",
            "type": "python",
            "request": "launch",
            "program": "${workspaceFolder}/backend/main.py",
            "cwd": "${workspaceFolder}/backend",
            "console": "integratedTerminal",
            "env": {
                "PLUGIN_PATH": "/home/deck/homebrew/plugins"
            },
            "preLaunchTask": "Build frontend"
        }
    ]
}