-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
48 lines (47 loc) · 1.11 KB
/
render.yaml
File metadata and controls
48 lines (47 loc) · 1.11 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
services:
- type: web
name: oshrin-api
runtime: docker
dockerfilePath: ./api/Dockerfile
dockerContext: .
plan: starter
healthCheckPath: /health
envVars:
- key: NODE_ENV
value: production
- key: PORT
value: "3000"
- key: DATABASE_URL
sync: false
- key: JWT_SECRET
sync: false
- key: JWT_REFRESH_SECRET
sync: false
- key: ENCRYPTION_KEY
sync: false
- key: CORS_ORIGIN
value: https://getoshrin.com
- key: APP_URL
value: https://getoshrin.com
- key: AUTH_STRATEGY
value: COOKIE_BASED
- key: COOKIE_DOMAIN
value: .getoshrin.com
- key: COOKIE_SECURE
value: "true"
- key: COOKIE_SAME_SITE
value: lax
- key: TRUST_PROXY
value: "true"
- type: web
name: oshrin-web
runtime: docker
dockerfilePath: ./web/Dockerfile
dockerContext: .
plan: starter
healthCheckPath: /health
envVars:
- key: VITE_API_URL
value: https://api.getoshrin.com
- key: VITE_AUTH_STRATEGY
value: COOKIE_BASED