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" }