api:
  # the host and port that the API server will listen on
  host: localhost
  port: 58787

  # if a request is made from any host that's not 
  # in the allow_hosts list, it will be rejected
  allowed_hosts:
    - localhost

  cors:
    allow_credentials: true
    allow_origins:
      - http://localhost:3000
    allow_methods:
      - GET
      - POST
    allow_headers:
      - Content-Type
      - Authorization
      - X-Requested-With
      - X-CSRF-TOKEN
      - Cache-Control
    expose_headers:
      - Content-Type
      - Content-Length
      - ETag
    max_age: 3600
