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