From 0725abc071025d9dc43390aae612252b715991db Mon Sep 17 00:00:00 2001
From: David Trattnig <david@subsquare.at>
Date: Fri, 21 Jan 2022 11:33:10 +0100
Subject: [PATCH] Clean up launch targets.

---
 .vscode/launch.json | 19 ++++---------------
 1 file changed, 4 insertions(+), 15 deletions(-)

diff --git a/.vscode/launch.json b/.vscode/launch.json
index f2d7787c..e5cede45 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -5,34 +5,23 @@
     "version": "0.2.0",
     "configurations": [
         {
-            "name": "Start Aura Engine",
+            "name": "Start Engine",
             "type": "python",
             "request": "launch",
             "program": "${workspaceFolder}/run.py",
             "console": "integratedTerminal"
         },
         {
-            "name": "Start Engine Core Only",
+            "name": "Start Engine Core",
             "type": "python",
             "request": "launch",
-            "program": "${workspaceFolder}/run.py",
-            "args": [
-                "--without-lqs"
-            ],
-            "console": "integratedTerminal"
-        },
-        {
-            "name": "Start Engine LQS Only",
-            "type": "python",
-            "request": "launch",
-            "program": "${workspaceFolder}/run.py",
+            "program": "${workspaceFolder}/../engine-core/run.py",
             "args": [
-                "--lqs-only"
             ],
             "console": "integratedTerminal"
         },
         {
-            "name": "Aura Engine - Recreate Database",
+            "name": "Recreate Database",
             "type": "python",
             "request": "launch",
             "program": "${workspaceFolder}/run.py",
-- 
GitLab