-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
62 lines (55 loc) · 1.36 KB
/
render.yaml
File metadata and controls
62 lines (55 loc) · 1.36 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
services:
- type: web
runtime: node
name: Magic3T Backend
plan: free
buildCommand: npm install --workspace=backend --include-workspace-root && npm run build --workspace=backend
startCommand: npm run start:prod --workspace=backend
region: virginia
repo: https://github.com/King-witcher/Magic3T
envVars:
# Self Requests
- key: HEARTBEAT_RATE
value: 600000 # 10 minutes
- key: MAGIC3T_BACKEND_URL
value: https://backend.magic3t.com.br
# Firebase
- key: FIREBASE_ADMIN_CREDENTIALS
sync: false
- key: FIRESTORE_DB
value: "production"
# Sentry
- key: SENTRY_DSN
sync: false
- key: SENTRY_AUTH_TOKEN
sync: false
# Postgres
- key: PG_HOST
sync: false
- key: PG_PORT
value: "5432"
- key: PG_SSL
value: "true"
- key: PG_USER
value: magic3t_backend
- key: PG_DATABASE
value: magic3t
- key: PG_PASSWORD
sync: false
- key: DEBUG
value: "false"
healthCheckPath: /status
domains:
- backend.magic3t.com.br
- api.magic3t.com.br
buildFilter:
paths:
- backend/**
- packages/**
- type: redis
name: Magic3T Redis
plan: free
region: virginia
maxmemoryPolicy: allkeys-lru
ipAllowList: []
version: "1"