-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
66 lines (64 loc) · 1.74 KB
/
Copy pathrender.yaml
File metadata and controls
66 lines (64 loc) · 1.74 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
services:
- type: web
name: voxxy-presents-client
env: node
plan: starter
buildCommand: npm ci && npm run build
startCommand: npm start
envVars:
- key: NODE_ENV
value: production
- key: VITE_SITE_URL
value: https://www.voxxypresents.com
- key: VITE_SITE_NAME
value: 'Voxxy Presents'
- key: VITE_SITE_DESCRIPTION
value: 'Welcome to Voxxy Presents'
domains:
- www.voxxypresents.com
- voxxypresents.com
autoDeploy: true
branch: main
rootDir: .
# Staging environment
- type: web
name: voxxy-presents-client-staging
env: node
plan: starter
buildCommand: npm ci && npm run build
startCommand: npm start
envVars:
- key: NODE_ENV
value: production
- key: VITE_ENVIRONMENT
value: staging
- key: VITE_API_BASE_URL
value: https://voxxy-presents-api-staging.run.app/api
- key: VITE_SITE_URL
value: https://voxxy-presents-client-staging.onrender.com
- key: VITE_SITE_NAME
value: 'Voxxy Presents (Staging)'
- key: VITE_SITE_DESCRIPTION
value: 'Voxxy Presents Staging Environment'
autoDeploy: true
branch: staging
rootDir: .
# Development environment
- type: web
name: voxxy-presents-client-dev
env: node
plan: starter
buildCommand: npm ci && npm run build
startCommand: npm start
envVars:
- key: NODE_ENV
value: production
- key: VITE_SITE_URL
value: https://dev-voxxy-presents.onrender.com
- key: VITE_SITE_NAME
value: 'Voxxy Presents (Dev)'
- key: VITE_SITE_DESCRIPTION
value: 'Voxxy Presents Development Environment'
autoDeploy: true
branch: develop
rootDir: .