From 99b4b939bdd2140aecf19ddb09a59b44e9cd117d Mon Sep 17 00:00:00 2001 From: AAGaming Date: Fri, 17 Jun 2022 18:43:53 -0400 Subject: Implement React-based plugin store (#81) Co-authored-by: TrainDoctor <11465594+TrainDoctor@users.noreply.github.com> Co-authored-by: WerWolv --- .vscode/launch.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.vscode/launch.json') diff --git a/.vscode/launch.json b/.vscode/launch.json index 39142df5..ff1f142a 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -2,16 +2,16 @@ "version": "0.2.0", "configurations": [ { - "name": "Debug", + "name": "Debug (Local)", "type": "python", "request": "launch", "program": "${workspaceFolder}/backend/main.py", "cwd": "${workspaceFolder}/backend", "console": "integratedTerminal", "env": { - "PLUGIN_PATH": "/home/deck/homebrew/plugins" + "PLUGIN_PATH": "${workspaceFolder}/plugins" }, - "preLaunchTask": "Build frontend" + "preLaunchTask": "localrun" } ] } -- cgit v1.2.3