From d8d3b579290ea07c92ea66d1983849fd190907e6 Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 8 Mar 2020 14:01:47 +0100 Subject: [PATCH] Adjusted launch cinfigs for vscode --- .vscode/launch.json | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index c810af37..bdca8db5 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -14,7 +14,7 @@ { "name": "cds run ...", "request": "launch", "type": "node", "runtimeExecutable": "npx", "runtimeArgs": [ "-n" ], "args": [ "--", "cds", "run", "--with-mocks", "--in-memory?" ], - "cwd": "${workspaceFolder}/packages/${input:service}", + "cwd": "${workspaceFolder}/${input:sample}", "console": "integratedTerminal", "skipFiles": ["/**"] } @@ -22,14 +22,13 @@ "inputs": [ { "type": "pickString", - "id": "service", - "description": "Which service do you want to start?", + "id": "sample", + "description": "Which sample do you want to start?", "options": [ "bookshop", - "bookstore", - "media-server", - "office-supplies", - "reviews-service" + "fiori", + "reviews", + "reviews/test/bookshop" ], "default": "bookshop" }