-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
61 lines (57 loc) · 1.41 KB
/
Copy pathrender.yaml
File metadata and controls
61 lines (57 loc) · 1.41 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
services:
- type: redis
name: shithub-redis
plan: free
ipAllowList:
- source: 0.0.0.0/0
description: allow all
- type: web
name: shithub-api
env: docker
dockerfilePath: ./Dockerfile.backend
autoDeploy: true
plan: free
healthCheckPath: /docs
envVars:
- key: REDIS_URL
fromService:
type: redis
name: shithub-redis
property: connectionString
- key: BASE_URL
value: https://shithub-api.onrender.com
- key: DATABASE_URL
value: sqlite:///shithub.db
- key: REPO_ROOT
value: /tmp/repos
- key: MEDIA_ROOT
value: /tmp/media
- key: FRONTEND_ORIGINS
value: '["https://shithub-frontend.onrender.com"]'
- key: JWT_SECRET_KEY
generateValue: true
- key: GROQ_API_KEY
sync: false
- key: BUG_API_KEY
sync: false
- key: SMTP_HOST
sync: false
- key: SMTP_PORT
value: "587"
- key: SMTP_USERNAME
sync: false
- key: SMTP_PASSWORD
sync: false
- key: SMTP_FROM_EMAIL
sync: false
- type: web
name: shithub-frontend
env: docker
dockerfilePath: ./Dockerfile.frontend
autoDeploy: true
plan: free
envVars:
- key: BACKEND_ORIGIN
value: https://shithub-api.onrender.com
- key: VITE_BACKEND_ORIGIN
value: https://shithub-api.onrender.com