UNPKG

307 BJavaScriptView Raw
1/** This is an example Apemanfile to use apeman-demo-app */
2
3'use strict'
4
5module.exports = {
6 $pkg: { /* ... */ },
7 $apps: {
8 // Define your own app.
9 'my-app-01': {
10 // Map url and handlers.
11 '/': [
12 require('apeman-demo-app')({
13 // Options
14 })
15 ]
16 }
17 }
18}
\No newline at end of file