Files
Node.js-14-Cookbook/Chapter10/standardizing-service-boilerplate/micro/fuge/fuge.yml
T
2017-07-31 11:33:31 +05:30

20 lines
306 B
YAML

fuge_global:
tail: true
monitor: true
monitor_excludes:
- '**/node_modules/**'
- '**/.git/**'
- '*.log'
adderservice:
type: process
path: ../adderservice
run: node index.js
ports:
- main=8080
webapp:
type: process
path: ../webapp
run: npm start
ports:
- main=3000