-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
41 lines (40 loc) · 980 Bytes
/
render.yaml
File metadata and controls
41 lines (40 loc) · 980 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
40
41
services:
- type: web
name: artframe
runtime: docker
rootDir: backend
dockerfilePath: ./Dockerfile
plan: free
autoDeploy: true
envVars:
- key: DEBUG
value: "False"
- key: EMAIL_ENABLED
value: "False"
- key: EMAIL_PROVIDER
value: sendgrid
- key: SENDGRID_API_KEY
sync: false
- key: EMAIL_FROM
sync: false
- key: EMAIL_FROM_NAME
value: ArtFrame
- key: SECRET_KEY
generateValue: true
- key: DATABASE_URL
value: sqlite+aiosqlite:///./artframe.db
- key: STORAGE_PATH
value: ./storage
- key: CORS_ORIGINS
sync: false
- type: web
name: artframe-frontend
runtime: node
rootDir: frontend
buildCommand: npm install && npm run build
startCommand: npm run start -- --hostname 0.0.0.0 --port $PORT
plan: free
autoDeploy: true
envVars:
- key: NEXT_PUBLIC_API_URL
sync: false