cleaned up start scripts

This commit is contained in:
Daniel
2020-01-03 02:59:27 +01:00
parent eb7431afed
commit 583c97a494
7 changed files with 35 additions and 41 deletions

29
.vscode/launch.json vendored
View File

@@ -5,19 +5,19 @@
"version": "0.2.0",
"configurations": [
{
"name": "cds run",
"request": "launch",
"type": "node",
"runtimeExecutable": "npx",
"runtimeArgs": ["-n"],
"args": ["--", "cds", "run", "--with-mocks", "--in-memory?"], // the leading "--" arg ensures it works with as well as without debugging
"name": "bookshop", "request": "launch",
"type": "node", "runtimeExecutable": "npx", "runtimeArgs": [ "-n", "--" ],
"args": [ "cds", "run", "--in-memory" ],
"cwd": "${workspaceFolder}/packages/bookshop",
"console": "integratedTerminal",
"skipFiles": ["<node_internals>/**"]
},
{
"name": "cds run ...", "request": "launch",
"type": "node", "runtimeExecutable": "npx", "runtimeArgs": [ "-n", "--" ],
"args": [ "cds", "run", "--with-mocks", "--in-memory?" ],
"cwd": "${workspaceFolder}/packages/${input:service}",
"console": "integratedTerminal",
"serverReadyAction": {
"pattern": "server listening on (https?://\\S+|[0-9]+)",
"uriFormat": "http://localhost:%s",
"action": "openExternally"
},
"skipFiles": ["<node_internals>/**"]
}
],
@@ -31,12 +31,9 @@
"bookstore",
"media-server",
"office-supplies",
"orders-service",
"products-service",
"reviews-service",
"user-service"
"reviews-service"
],
"default": "bookstore"
"default": "bookshop"
}
]
}