Revised layout of .html pages
This commit is contained in:
3
fiori/app/bookshop.html
Normal file
3
fiori/app/bookshop.html
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
<head>
|
||||||
|
<meta http-equiv="refresh" content="0;url=vue/bookshop/index.html">
|
||||||
|
</head>
|
||||||
3
fiori/app/reviews.html
Normal file
3
fiori/app/reviews.html
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
<head>
|
||||||
|
<meta http-equiv="refresh" content="0;url=vue/reviews/index.html">
|
||||||
|
</head>
|
||||||
@@ -1 +0,0 @@
|
|||||||
<!-- This is just a dummy to be detected by the automatically generated /index.html -->
|
|
||||||
@@ -7,8 +7,11 @@ cds.once('bootstrap',(app)=>{
|
|||||||
const orders_app = dirname (require.resolve('@capire/orders/app/orders/webapp/manifest.json'))
|
const orders_app = dirname (require.resolve('@capire/orders/app/orders/webapp/manifest.json'))
|
||||||
app.use ('/orders/webapp', express.static(orders_app))
|
app.use ('/orders/webapp', express.static(orders_app))
|
||||||
// serving the vue.js app imported from @capire/bookshop
|
// serving the vue.js app imported from @capire/bookshop
|
||||||
const vue_app = dirname (require.resolve('@capire/bookshop/app/vue/index.html'))
|
const bookshop_app = dirname (require.resolve('@capire/bookshop/app/vue/index.html'))
|
||||||
app.use ('/vue', express.static(vue_app))
|
app.use ('/vue/bookshop', express.static(bookshop_app))
|
||||||
|
// serving the vue.js app imported from @capire/reviews
|
||||||
|
const reviews_app = dirname (require.resolve('@capire/reviews/app/vue/index.html'))
|
||||||
|
app.use ('/vue/reviews', express.static(reviews_app))
|
||||||
})
|
})
|
||||||
|
|
||||||
cds.once('served', require('./srv/mashup'))
|
cds.once('served', require('./srv/mashup'))
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ GET {{bookshop}}/browse/Books(201)?
|
|||||||
|
|
||||||
#################################################
|
#################################################
|
||||||
#
|
#
|
||||||
# Bookshop Services
|
# Orders Service
|
||||||
#
|
#
|
||||||
|
|
||||||
GET {{bookshop}}/orders/Orders
|
GET {{bookshop}}/orders/Orders
|
||||||
|
|||||||
Reference in New Issue
Block a user