-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
96 lines (92 loc) · 2.23 KB
/
Copy pathrender.yaml
File metadata and controls
96 lines (92 loc) · 2.23 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
services:
# PostgreSQL Database
- type: pserv
name: pulss-postgres
env: docker
plan: starter
region: oregon
databases:
- name: pulss_db
user: pulss_user
# Backend API
- type: web
name: pulss-backend
env: docker
dockerfilePath: ./apps/backend/Dockerfile
dockerContext: .
plan: starter
region: oregon
healthCheckPath: /api/health
envVars:
- key: NODE_ENV
value: production
- key: DATABASE_URL
fromDatabase:
name: pulss-postgres
property: connectionString
- key: JWT_SECRET
generateValue: true
- key: JWT_REFRESH_SECRET
generateValue: true
- key: FRONTEND_URL
value: https://pulss-storefront.onrender.com
- key: ADMIN_URL
value: https://pulss-admin.onrender.com
- key: STRIPE_SECRET_KEY
sync: false
- key: STRIPE_WEBHOOK_SECRET
sync: false
- key: CLOUDINARY_CLOUD_NAME
sync: false
- key: CLOUDINARY_API_KEY
sync: false
- key: CLOUDINARY_API_SECRET
sync: false
- key: REDIS_URL
sync: false
- key: EMAIL_HOST
sync: false
- key: EMAIL_PORT
value: "587"
- key: EMAIL_USER
sync: false
- key: EMAIL_PASSWORD
sync: false
- key: EMAIL_FROM
sync: false
# Storefront (Customer-facing)
- type: web
name: pulss-storefront
env: docker
dockerfilePath: ./apps/storefront/Dockerfile
dockerContext: .
plan: starter
region: oregon
envVars:
- key: NODE_ENV
value: production
- key: NEXT_PUBLIC_API_URL
fromService:
type: web
name: pulss-backend
property: host
envVarKey: NEXT_PUBLIC_API_URL
- key: NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY
sync: false
# Admin Dashboard
- type: web
name: pulss-admin
env: docker
dockerfilePath: ./apps/admin-dashboard/Dockerfile
dockerContext: .
plan: starter
region: oregon
envVars:
- key: NODE_ENV
value: production
- key: NEXT_PUBLIC_API_URL
fromService:
type: web
name: pulss-backend
property: host
envVarKey: NEXT_PUBLIC_API_URL