adding fiori

This commit is contained in:
Wolfgang Koch
2021-05-04 10:33:38 +02:00
parent 13fc17a760
commit 309c76caae
25 changed files with 1037 additions and 0 deletions

18
fiori/server.js Normal file
View File

@@ -0,0 +1,18 @@
const cds = require ('@sap/cds')
cds.once('bootstrap',(app)=>{
app.use ('/orders/webapp', _from('@capire/orders/app/orders/webapp/manifest.json'))
app.use ('/bookshop', _from('@capire/bookshop/app/vue/index.html'))
app.use ('/reviews', _from('@capire/reviews/app/vue/index.html'))
})
cds.once('served', require('./srv/mashup'))
module.exports = cds.server
// -----------------------------------------------------------------------
// Helper for serving static content from npm-installed packages
const {static} = require('express')
const {dirname} = require('path')
const _from = target => static (dirname (require.resolve(target)))