-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrender.yaml
More file actions
86 lines (83 loc) · 2.08 KB
/
render.yaml
File metadata and controls
86 lines (83 loc) · 2.08 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
services:
- type: web
name: valentine-hotline-api
env: docker
rootDir: backend
dockerfilePath: ./Dockerfile
autoDeploy: true
healthCheckPath: /health
envVars:
- key: APP_ENV
value: production
- key: ENV
value: prod
- key: REDIS_URL
fromService:
type: redis
name: valentine-hotline-redis
property: connectionString
- key: DATA_RETENTION_DAYS
value: "90"
- key: MAX_CONCURRENT_SESSIONS
value: "5"
- key: MAX_REQUEST_BODY_BYTES
value: "1048576"
- key: ALLOWED_HOSTS
value: "valentinehotline.com,www.valentinehotline.com"
- type: worker
name: valentine-hotline-worker
env: docker
rootDir: backend
dockerfilePath: ./Dockerfile
dockerCommand: uv run arq workers.main.WorkerSettings
autoDeploy: true
envVars:
- key: APP_ENV
value: production
- key: ENV
value: prod
- key: REDIS_URL
fromService:
type: redis
name: valentine-hotline-redis
property: connectionString
- key: DATA_RETENTION_DAYS
value: "90"
- type: worker
name: valentine-hotline-agent
env: docker
rootDir: backend
dockerfilePath: ./Dockerfile
dockerCommand: uv run python -m livekit.agents start agent.main
autoDeploy: true
envVars:
- key: APP_ENV
value: production
- key: ENV
value: prod
- key: REDIS_URL
fromService:
type: redis
name: valentine-hotline-redis
property: connectionString
- key: DATABASE_URL
sync: false
- key: LIVEKIT_URL
sync: false
- key: LIVEKIT_API_KEY
sync: false
- key: LIVEKIT_API_SECRET
sync: false
- key: OPENAI_API_KEY
sync: false
- key: DEEPGRAM_API_KEY
sync: false
- key: SMALLEST_AI_API_KEY
sync: false
- key: SMALLEST_API_KEY
sync: false
- key: TAVUS_API_KEY
sync: false
- type: redis
name: valentine-hotline-redis
ipAllowList: []