-
Notifications
You must be signed in to change notification settings - Fork 9
/
app-platform.yaml
40 lines (40 loc) · 976 Bytes
/
app-platform.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
40
envs:
- key: SECRET_KEY
value: "Enter a random string of characters"
type: SECRET
- key: EMAIL_URL
- key: DEFAULT_FROM_EMAIL
- key: GLITCHTIP_DOMAIN
- key: DATABASE_URL
scope: RUN_TIME
value: ${glitchtip-db.DATABASE_URL}
- key: REDIS_URL
scope: RUN_TIME
value: ${glitchtip-redis.REDIS_URL}
name: glitchtip
services:
- dockerfile_path: Dockerfile
git:
branch: master
repo_clone_url: https://gitlab.com/glitchtip/glitchtip.git
name: glitchtip-web
workers:
- dockerfile_path: Dockerfile
git:
branch: master
repo_clone_url: https://gitlab.com/glitchtip/glitchtip.git
name: glitchtip-worker
run_command: ./bin/run-celery-with-beat.sh
jobs:
- dockerfile_path: Dockerfile
git:
branch: master
repo_clone_url: https://gitlab.com/glitchtip/glitchtip.git
name: glitchtip-migrate
run_command: ./manage.py migrate
databases:
- name: glitchtip-db
- name: glitchtip-redis
engine: REDIS
production: true
cluster_name: glitchtip-redis