summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authormarios <marios8543@gmail.com>2022-05-26 04:00:18 +0300
committermarios <marios8543@gmail.com>2022-05-26 04:00:18 +0300
commit4b923c1dc70eaa4a3ca58d9e9f3218785b2fe919 (patch)
tree3394a7e752b61bdfa16b1a7f50842c4e1dbc0972 /.vscode
parent74438a31458af8bddd08d90eacc6d63677bab844 (diff)
downloaddecky-loader-4b923c1dc70eaa4a3ca58d9e9f3218785b2fe919.tar.gz
decky-loader-4b923c1dc70eaa4a3ca58d9e9f3218785b2fe919.zip
display overhaul, compatibility with legacy plugins, fixes
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json9
-rw-r--r--.vscode/tasks.json7
2 files changed, 12 insertions, 4 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 07508f6f..39142df5 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -5,10 +5,13 @@
"name": "Debug",
"type": "python",
"request": "launch",
- "program": "${workspaceFolder}/plugin_loader/main.py",
- "preLaunchTask": "Stop Service",
+ "program": "${workspaceFolder}/backend/main.py",
+ "cwd": "${workspaceFolder}/backend",
"console": "integratedTerminal",
- "justMyCode": true
+ "env": {
+ "PLUGIN_PATH": "/home/deck/homebrew/plugins"
+ },
+ "preLaunchTask": "Build frontend"
}
]
}
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 3a62071a..bbfee13f 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -5,6 +5,11 @@
"label": "Stop Service",
"type": "shell",
"command":"systemctl --user stop plugin_loader",
- }
+ },
+ {
+ "label": "Build frontend",
+ "type": "shell",
+ "command":"cd ${workspaceFolder}/frontend; npm run build",
+ }
]
}