hermodapi 0.1.0

Hermod is a platform for automated business-customer interactions.
name: hermod
region: nyc1
services:
  - name: api
    dockerfile_path: api/Dockerfile
    source_dir: api/.
    github:
      branch: main
      deploy_on_push: true
      repo: cs495wifly/hermod
    health_check:
      http_path: /api/health_check
    http_port: 8000
    instance_count: 1
    instance_size_slug: basic-xxs
    routes:
      - path: /api/
    envs:
      - key: APP_DATABASE__USERNAME
        scope: RUN_TIME
        value: ${hermod.USERNAME}
      - key: APP_DATABASE__PASSWORD
        scope: RUN_TIME
        value: ${hermod.PASSWORD}
      - key: APP_DATABASE__HOST
        scope: RUN_TIME
        value: ${hermod.HOSTNAME}
      - key: APP_DATABASE__PORT
        scope: RUN_TIME
        value: ${hermod.PORT}
      - key: APP_DATABASE__DATABASE_NAME
        scope: RUN_TIME
        value: ${hermod.DATABASE}
  - name: www
    dockerfile_path: www/Dockerfile
    source_dir: www/.
    github:
      branch: main
      deploy_on_push: true
      repo: cs495wifly/hermod
    health_check:
      http_path: /
    http_port: 80
    instance_count: 1
    instance_size_slug: basic-xxs
    routes:
      - path: /
databases:
  - engine: PG
    name: hermod
    num_nodes: 1
    size: db-s-dev-database
    version: "12"