mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-11 16:13:51 +03:00
27 lines
730 B
JSON
27 lines
730 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Run (Remote)",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"console": "integratedTerminal",
|
|
"preLaunchTask": "remoterun",
|
|
"cwd": "",
|
|
"program": "",
|
|
},
|
|
{
|
|
"name": "Run (Local)",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/backend/main.py",
|
|
"cwd": "${workspaceFolder}/backend",
|
|
"console": "integratedTerminal",
|
|
"env": {
|
|
"PLUGIN_PATH": "${workspaceFolder}/plugins"
|
|
},
|
|
"preLaunchTask": "localrun"
|
|
}
|
|
]
|
|
}
|