UNPKG

436 BJavaScriptView Raw
1/** Example of Apemanfile.js */
2
3"use strict";
4
5module.exports = {
6 $cwd: __dirname,
7 $pkg: {/*...*/},
8 $proto: [/*...*/],
9 $tmpls: {/*...*/},
10 $tasks: {/*...*/},
11 $apps: {/*...*/},
12 $wtchs: {/*...*/},
13 $infrs: {
14 'my-node-01': './infra/node/Dockerfile' // Path infra docker path.
15 },
16 $dply: {
17 'my-deploy-01': [
18 require.resolve('./deploy/conf/node.conf.json')
19 ]
20 }
21};
\No newline at end of file