-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
39 lines (38 loc) · 982 Bytes
/
render.yaml
File metadata and controls
39 lines (38 loc) · 982 Bytes
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
databases:
- name: apollo-db
region: singapore
plan: starter
ipAllowList: []
services:
- type: web
name: apollo-web
runtime: python
region: singapore
plan: starter
branch: main
healthCheckPath: /healthz
buildCommand: "./deploy/build.sh"
startCommand: "./deploy/run.sh"
envVars:
# Required Configuration
- key: DJANGO_ENV
sync: false
- key: BASE_URL
sync: false
# Database Configuration
- key: DATABASE_URL
fromDatabase:
name: apollo-db
property: connectionString
# Django Admin Configuration
- key: SECRET_KEY
generateValue: true
- key: DJANGO_SUPERUSER_EMAIL
value: developers@medsync.ph
- key: DJANGO_SUPERUSER_USERNAME
value: apollo
- key: DJANGO_SUPERUSER_PASSWORD
value: password_12345
# Render - Specific Environment Configuration
- key: PYTHON_VERSION
value: 3.11.0