add cli tool

This commit is contained in:
Dzmitry_Tamashevich@epam.com
2020-10-01 01:08:02 +03:00
committed by Daniel Hutzel
parent e33a455154
commit e7be207911
5 changed files with 136 additions and 14 deletions

View File

@@ -4,12 +4,19 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Program",
"command": "npm run import:data",
"request": "launch",
"skipFiles": ["<node_internals>/**"],
"type": "node-terminal"
},
{
"command": "cds run --with-mocks --in-memory?",
"name": "cds run",
"request": "launch",
"type": "node-terminal",
"skipFiles": [ "<node_internals>/**" ]
"skipFiles": ["<node_internals>/**"]
}
]
}