name: my-proj

github_actions:
  workflows:
    ci:
      build: true
      lint: true
      test: true
    release:
      trigger: on_merge

docker:
  registry: ecr
  images:
    - api
    - worker
    - dev

rust:
  api:
    spec_file: api-spec.yaml
    backend: actix
    uses:
      - postgres
  worker:
    uses:
      - redis

resources:
  datadog: false
  grafana: true
  postgres: true
  redis:
    username: redis
    password:
      local: redis
      prod: "aws-sm:redis/password"