Initial HANA config

This commit is contained in:
Christian Georgi
2020-01-24 11:04:23 +00:00
parent 06a9ef0f5b
commit e660e01b77

View File

@@ -1,14 +1,25 @@
{ {
"name": "@sap/capire-bookshop", "name": "@sap/capire-bookshop",
"version": "1.0.0", "version": "1.0.0",
"description": "A simple bookshop application, build in a self-contained all-in-one fashion, i.e. w/o reusing other packages.", "description": "A simple bookshop application, build in a self-contained all-in-one fashion, i.e. w/o reusing other packages.",
"license": "SAP SAMPLE CODE LICENSE", "license": "SAP SAMPLE CODE LICENSE",
"dependencies": { "dependencies": {
"@sap/cds": "latest", "@sap/cds": "latest",
"express": "*" "express": "*"
}, },
"scripts": { "scripts": {
"start": "cds run --in-memory?", "start": "cds run --in-memory?",
"watch": "cds watch" "watch": "cds watch"
} },
"cds": {
"requires": {
"db": {
"model": [
"db",
"srv"
],
"kind": "sqlite"
}
}
}
} }