-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspec.yaml
39 lines (39 loc) · 931 Bytes
/
spec.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: muttr
region: fra
services:
- name: muttr-server
dockerfile_path: Dockerfile
source_dir: .
github:
branch: main
deploy_on_push: true
repo: alexpitsikoulis/muttr_server
health_check:
http_path: /health-check
http_port: 8000
instance_count: 1
instance_size_slug: basic-xxs
routes:
- path: /
envs:
- key: APP_DATABASE__USERNAME
scope: RUN_TIME
value: ${muttr.USERNAME}
- key: APP_DATABASE__PASSWORD
scope: RUN_TIME
value: ${muttr.PASSWORD}
- key: APP_DATABASE__HOST
scope: RUN_TIME
value: ${muttr.HOSTNAME}
- key: APP_DATABASE__PORT
scope: RUN_TIME
value: ${muttr.PORT}
- key: APP_DATABASE__DATABASE_NAME
scope: RUN_TIME
value: ${muttr.DATABASE}
databases:
- engine: PG
name: muttr
num_nodes: 1
size: db-s-dev-database
version: "12"