streamline branches
This commit is contained in:
67
README.md
67
README.md
@@ -40,6 +40,73 @@ After that, watch out for the little popup in the lower right corner of SAP Busi
|
|||||||
|
|
||||||
## Deploy to Cloud Foundry
|
## Deploy to Cloud Foundry
|
||||||
|
|
||||||
|
Clean-up the CF space in your trial account if you already used it before. Make sure that there are no services or applications deployed.
|
||||||
|
|
||||||
|
Generation of the xs-security.json
|
||||||
|
```sh
|
||||||
|
cds compile srv/ --to xsuaa > xs-security.json
|
||||||
|
```
|
||||||
|
|
||||||
|
In this unit we use [MTA](https://sap.github.io/cloud-mta-build-tool/) to do the deployment to CF
|
||||||
|
```sh
|
||||||
|
npm install -g mbt
|
||||||
|
```
|
||||||
|
You can generate the MTA.yaml from CDS and do manual modifications or simply use the already generated and adapted mta.yaml in the branch and directly generate the .mtar file
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### BEGIN OPTIONAL PART
|
||||||
|
|
||||||
|
If you do not want to generate the MTA.YAML yourself please do the following:
|
||||||
|
|
||||||
|
- Generate the mta.yaml with the HANA dependency
|
||||||
|
```sh
|
||||||
|
cds add hana --force
|
||||||
|
cds add mta
|
||||||
|
```
|
||||||
|
|
||||||
|
- Add the path to the generated xs-security.json in the MTA.YAML
|
||||||
|
```
|
||||||
|
parameters:
|
||||||
|
path: ./xs-security.json
|
||||||
|
service:xsuaa
|
||||||
|
service-plan: application
|
||||||
|
....
|
||||||
|
```
|
||||||
|
- Add the application block in the MTA.YAML
|
||||||
|
```
|
||||||
|
############## APP #########################
|
||||||
|
- name: capire-bookshop-app
|
||||||
|
type: nodejs
|
||||||
|
path: gen/app
|
||||||
|
parameters:
|
||||||
|
memory: 256M
|
||||||
|
build-parameters:
|
||||||
|
requires:
|
||||||
|
- name: capire-bookshop-srv
|
||||||
|
requires:
|
||||||
|
- name: capire-bookshop-uaa
|
||||||
|
- name: srv-binding
|
||||||
|
group: destinations
|
||||||
|
properties:
|
||||||
|
forwardAuthToken: true
|
||||||
|
name: srv-binding
|
||||||
|
url: ~{srv-url}
|
||||||
|
```
|
||||||
|
- Make sure to use service hanatrial instead of hana in the MTA.YAML
|
||||||
|
```
|
||||||
|
parameters:
|
||||||
|
service: hanatrial
|
||||||
|
```
|
||||||
|
### END OPTIONAL PART
|
||||||
|
|
||||||
|
Generate the .mtar file for the deployment and deploy to cloud foundry:
|
||||||
|
```sh
|
||||||
|
mbt build -t ./
|
||||||
|
cf login -a https://api.cf.eu10.hana.ondemand.com
|
||||||
|
cf deploy sap.capire-bookshop_1.0.0.mtar
|
||||||
|
```
|
||||||
|
|
||||||
## Get Support
|
## Get Support
|
||||||
|
|
||||||
Check out the cap docs at https://cap.cloud.sap. <br>
|
Check out the cap docs at https://cap.cloud.sap. <br>
|
||||||
|
|||||||
78
mta.yaml
78
mta.yaml
@@ -1,78 +0,0 @@
|
|||||||
####### Generated mta.yaml based on template version 0.2.0
|
|
||||||
####### appName = capire-samples
|
|
||||||
####### language=nodejs; multiTenant=
|
|
||||||
####### approuter=
|
|
||||||
|
|
||||||
_schema-version: '3.1'
|
|
||||||
ID: sap.capire-samples
|
|
||||||
version: 1.0.0
|
|
||||||
description: "The umbrella project for all samples to easily setup for local development and tests."
|
|
||||||
|
|
||||||
build-parameters:
|
|
||||||
before-all:
|
|
||||||
- builder: custom
|
|
||||||
commands:
|
|
||||||
- npm install
|
|
||||||
- cds build/all
|
|
||||||
|
|
||||||
parameters:
|
|
||||||
enable-parallel-deployments: true
|
|
||||||
|
|
||||||
modules:
|
|
||||||
############## SERVER MODULE ##########################
|
|
||||||
- name: capire-samples-srv
|
|
||||||
type: nodejs
|
|
||||||
path:
|
|
||||||
properties:
|
|
||||||
EXIT: 1 # required by deploy.js task to terminate
|
|
||||||
|
|
||||||
|
|
||||||
requires:
|
|
||||||
#### Resources extracted from CAP configuration ####
|
|
||||||
- name: capire-samples-db
|
|
||||||
- name: capire-samples-uaa
|
|
||||||
|
|
||||||
provides:
|
|
||||||
- name: srv-binding # required by consumers of CAP services (e.g. approuter)
|
|
||||||
properties:
|
|
||||||
srv-url: ${default-url}
|
|
||||||
|
|
||||||
############################################################
|
|
||||||
|
|
||||||
############## SIDECAR MODULE #########################
|
|
||||||
- name: db
|
|
||||||
|
|
||||||
type: hdb
|
|
||||||
path: gen/db
|
|
||||||
parameters:
|
|
||||||
app-name: capire-samples-db
|
|
||||||
requires:
|
|
||||||
#### Hana and xsuaa resources extracted from CAP configuration ####
|
|
||||||
- name: capire-samples-db
|
|
||||||
- name: capire-samples-uaa
|
|
||||||
############################################################
|
|
||||||
|
|
||||||
|
|
||||||
############## RESOURCES ##################################
|
|
||||||
resources:
|
|
||||||
##### Services extracted from CAP configuration ####
|
|
||||||
##### 'service-plan' can be configured via 'cds.requires.<name>.vcap.plan'
|
|
||||||
- name: capire-samples-db
|
|
||||||
type: com.sap.xs.hdi-container
|
|
||||||
|
|
||||||
parameters:
|
|
||||||
service: hanatrial
|
|
||||||
properties:
|
|
||||||
hdi-service-name: ${service-name} # required for Java case
|
|
||||||
- name: capire-samples-uaa
|
|
||||||
|
|
||||||
type: org.cloudfoundry.managed-service
|
|
||||||
parameters:
|
|
||||||
path: ./xs-security.json
|
|
||||||
service: xsuaa
|
|
||||||
service-plan: application
|
|
||||||
config:
|
|
||||||
xsappname: capire-samples-${space} # name + space dependency
|
|
||||||
tenant-mode: dedicated
|
|
||||||
### scopes and role templates will be added below by a developer or by CAP tools
|
|
||||||
############################################################
|
|
||||||
@@ -4,7 +4,7 @@
|
|||||||
"@sap/hdi-deploy": "^3.8.2"
|
"@sap/hdi-deploy": "^3.8.2"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^8"
|
"node": "^12"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node node_modules/@sap/hdi-deploy/deploy.js"
|
"start": "node node_modules/@sap/hdi-deploy/deploy.js"
|
||||||
|
|||||||
136
packages/bookshop/db/src/.hdiconfig
Normal file
136
packages/bookshop/db/src/.hdiconfig
Normal file
@@ -0,0 +1,136 @@
|
|||||||
|
{
|
||||||
|
"file_suffixes": {
|
||||||
|
"csv": {
|
||||||
|
"plugin_name": "com.sap.hana.di.tabledata.source"
|
||||||
|
},
|
||||||
|
"hdbafllangprocedure": {
|
||||||
|
"plugin_name": "com.sap.hana.di.afllangprocedure"
|
||||||
|
},
|
||||||
|
"hdbanalyticprivilege": {
|
||||||
|
"plugin_name": "com.sap.hana.di.analyticprivilege"
|
||||||
|
},
|
||||||
|
"hdbcalculationview": {
|
||||||
|
"plugin_name": "com.sap.hana.di.calculationview"
|
||||||
|
},
|
||||||
|
"hdbcollection": {
|
||||||
|
"plugin_name": "com.sap.hana.di.collection"
|
||||||
|
},
|
||||||
|
"hdbconstraint": {
|
||||||
|
"plugin_name": "com.sap.hana.di.constraint"
|
||||||
|
},
|
||||||
|
"hdbdropcreatetable": {
|
||||||
|
"plugin_name": "com.sap.hana.di.dropcreatetable"
|
||||||
|
},
|
||||||
|
"hdbflowgraph": {
|
||||||
|
"plugin_name": "com.sap.hana.di.flowgraph"
|
||||||
|
},
|
||||||
|
"hdbfunction": {
|
||||||
|
"plugin_name": "com.sap.hana.di.function"
|
||||||
|
},
|
||||||
|
"hdbgraphworkspace": {
|
||||||
|
"plugin_name": "com.sap.hana.di.graphworkspace"
|
||||||
|
},
|
||||||
|
"hdbhadoopmrjob": {
|
||||||
|
"plugin_name": "com.sap.hana.di.virtualfunctionpackage.hadoop"
|
||||||
|
},
|
||||||
|
"hdbindex": {
|
||||||
|
"plugin_name": "com.sap.hana.di.index"
|
||||||
|
},
|
||||||
|
"hdblibrary": {
|
||||||
|
"plugin_name": "com.sap.hana.di.library"
|
||||||
|
},
|
||||||
|
"hdbmigrationtable": {
|
||||||
|
"plugin_name": "com.sap.hana.di.table.migration"
|
||||||
|
},
|
||||||
|
"hdbprocedure": {
|
||||||
|
"plugin_name": "com.sap.hana.di.procedure"
|
||||||
|
},
|
||||||
|
"hdbprojectionview": {
|
||||||
|
"plugin_name": "com.sap.hana.di.projectionview"
|
||||||
|
},
|
||||||
|
"hdbprojectionviewconfig": {
|
||||||
|
"plugin_name": "com.sap.hana.di.projectionview.config"
|
||||||
|
},
|
||||||
|
"hdbreptask": {
|
||||||
|
"plugin_name": "com.sap.hana.di.reptask"
|
||||||
|
},
|
||||||
|
"hdbresultcache": {
|
||||||
|
"plugin_name": "com.sap.hana.di.resultcache"
|
||||||
|
},
|
||||||
|
"hdbrole": {
|
||||||
|
"plugin_name": "com.sap.hana.di.role"
|
||||||
|
},
|
||||||
|
"hdbroleconfig": {
|
||||||
|
"plugin_name": "com.sap.hana.di.role.config"
|
||||||
|
},
|
||||||
|
"hdbsearchruleset": {
|
||||||
|
"plugin_name": "com.sap.hana.di.searchruleset"
|
||||||
|
},
|
||||||
|
"hdbsequence": {
|
||||||
|
"plugin_name": "com.sap.hana.di.sequence"
|
||||||
|
},
|
||||||
|
"hdbstatistics": {
|
||||||
|
"plugin_name": "com.sap.hana.di.statistics"
|
||||||
|
},
|
||||||
|
"hdbstructuredprivilege": {
|
||||||
|
"plugin_name": "com.sap.hana.di.structuredprivilege"
|
||||||
|
},
|
||||||
|
"hdbsynonym": {
|
||||||
|
"plugin_name": "com.sap.hana.di.synonym"
|
||||||
|
},
|
||||||
|
"hdbsynonymconfig": {
|
||||||
|
"plugin_name": "com.sap.hana.di.synonym.config"
|
||||||
|
},
|
||||||
|
"hdbsystemversioning": {
|
||||||
|
"plugin_name": "com.sap.hana.di.systemversioning"
|
||||||
|
},
|
||||||
|
"hdbtable": {
|
||||||
|
"plugin_name": "com.sap.hana.di.table"
|
||||||
|
},
|
||||||
|
"hdbtabledata": {
|
||||||
|
"plugin_name": "com.sap.hana.di.tabledata"
|
||||||
|
},
|
||||||
|
"hdbtabletype": {
|
||||||
|
"plugin_name": "com.sap.hana.di.tabletype"
|
||||||
|
},
|
||||||
|
"hdbtrigger": {
|
||||||
|
"plugin_name": "com.sap.hana.di.trigger"
|
||||||
|
},
|
||||||
|
"hdbview": {
|
||||||
|
"plugin_name": "com.sap.hana.di.view"
|
||||||
|
},
|
||||||
|
"hdbvirtualfunction": {
|
||||||
|
"plugin_name": "com.sap.hana.di.virtualfunction"
|
||||||
|
},
|
||||||
|
"hdbvirtualfunctionconfig": {
|
||||||
|
"plugin_name": "com.sap.hana.di.virtualfunction.config"
|
||||||
|
},
|
||||||
|
"hdbvirtualpackagehadoop": {
|
||||||
|
"plugin_name": "com.sap.hana.di.virtualpackage.hadoop"
|
||||||
|
},
|
||||||
|
"hdbvirtualpackagesparksql": {
|
||||||
|
"plugin_name": "com.sap.hana.di.virtualpackage.sparksql"
|
||||||
|
},
|
||||||
|
"hdbvirtualprocedure": {
|
||||||
|
"plugin_name": "com.sap.hana.di.virtualprocedure"
|
||||||
|
},
|
||||||
|
"hdbvirtualprocedureconfig": {
|
||||||
|
"plugin_name": "com.sap.hana.di.virtualprocedure.config"
|
||||||
|
},
|
||||||
|
"hdbvirtualtable": {
|
||||||
|
"plugin_name": "com.sap.hana.di.virtualtable"
|
||||||
|
},
|
||||||
|
"hdbvirtualtableconfig": {
|
||||||
|
"plugin_name": "com.sap.hana.di.virtualtable.config"
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"plugin_name": "com.sap.hana.di.tabledata.properties"
|
||||||
|
},
|
||||||
|
"tags": {
|
||||||
|
"plugin_name": "com.sap.hana.di.tabledata.properties"
|
||||||
|
},
|
||||||
|
"txt": {
|
||||||
|
"plugin_name": "com.sap.hana.di.copyonly"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,7 +2,6 @@
|
|||||||
####### appName = capire-bookshop
|
####### appName = capire-bookshop
|
||||||
####### language=nodejs; multiTenant=
|
####### language=nodejs; multiTenant=
|
||||||
####### approuter=
|
####### approuter=
|
||||||
|
|
||||||
_schema-version: '3.1'
|
_schema-version: '3.1'
|
||||||
ID: sap.capire-bookshop
|
ID: sap.capire-bookshop
|
||||||
version: 1.0.0
|
version: 1.0.0
|
||||||
|
|||||||
@@ -16,11 +16,10 @@
|
|||||||
"cds": {
|
"cds": {
|
||||||
"requires": {
|
"requires": {
|
||||||
"db": {
|
"db": {
|
||||||
"kind": "sqlite",
|
"kind": "hana",
|
||||||
"[production]": {
|
"[production]": {
|
||||||
"kind": "hana"
|
"kind": "hana"
|
||||||
},
|
}
|
||||||
"model": "srv"
|
|
||||||
},
|
},
|
||||||
"uaa": {
|
"uaa": {
|
||||||
"kind": "xsuaa"
|
"kind": "xsuaa"
|
||||||
|
|||||||
Reference in New Issue
Block a user