From e9a18c99381ff9e4b9269cefe715a4086fc46b62 Mon Sep 17 00:00:00 2001 From: Christian Georgi Date: Tue, 11 Feb 2020 11:26:28 +0000 Subject: [PATCH] Add launch for bookshop --- packages/bookshop/.vscode/launch.json | 31 +++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 packages/bookshop/.vscode/launch.json diff --git a/packages/bookshop/.vscode/launch.json b/packages/bookshop/.vscode/launch.json new file mode 100644 index 00000000..58fc3c56 --- /dev/null +++ b/packages/bookshop/.vscode/launch.json @@ -0,0 +1,31 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + "version": "0.2.0", + "configurations": [ + { + "name": "Run bookshop", + "request": "launch", + "type": "node", + "cwd": "/home/user/projects/cloud-cap-samples/packages/bookshop", + "runtimeExecutable": "npx", + "runtimeArgs": [ + "-n" + ], + "args": [ + "--", + "cds", + "run", + "--in-memory?" + ], + "console": "internalConsole", + "internalConsoleOptions": "openOnSessionStart", + "skipFiles": [ + "/**" + ], + "env": { + "run.config": "{\"handlerId\":\"cap_run_config_handler_id\",\"runnableId\":\"/home/user/projects/cloud-cap-samples/packages/bookshop\"}" + } + } + ] +} \ No newline at end of file