fuge_global: 
  run_containers: false
  tail: true
  monitor: true
  monitor_excludes: 
    - /node_modules|\.git|\.log/mgi,
  dns_enabled: true
  auto_generate_environment: true
  auto_port_start: 20000
  environment:
    - FUGE=ROCKS
  host: wibble
  delay_start: 1
  restart_on_error: true
frontend:
  delay_start: 5
  type: process
  path: ./frontend
  build: 'sh build.sh'
  test: 'npm test'
  run: 'npm start'
  environment:
    - ONE=TWO
  host: bibble
  ports:
    - main=3000
    - tcp=3001
service:
  type: process
  path: ./service
  build: 'sh build.sh'
  test: 'npm test'
  run: 'npm start'
  environment:
    - ONE=TWO
    - FUGE=DOUBLEROCKS
mongo:
  type: container
  image: mongodb
  auto_generate_environment: false
  dns_enabled: false
  dns_namespace: mongo
  args: '-e -p'
  ports:
    - http=1000080

