-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
35 lines (33 loc) · 871 Bytes
/
Copy pathrender.yaml
File metadata and controls
35 lines (33 loc) · 871 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
services:
- type: web
name: continuityX-backend
env: python
rootDir: backend
buildCommand: pip install -r requirements.txt
startCommand: uvicorn app.main:app --host 0.0.0.0 --port $PORT
envVars:
- key: GROQ_API_KEY
sync: false
- key: REDIS_URL
sync: false
- key: CHROMA_DIR
value: /tmp/chroma_db
- key: EMBEDDING_BACKEND
value: local
- key: CORS_ORIGINS
sync: false
- key: CHROMA_COLLECTION
value: github_repo
- type: web
name: continuityX-frontend
env: static
rootDir: frontend
buildCommand: npm install && npm run build
staticPublishPath: dist
envVars:
- key: VITE_API_URL
sync: false
# Set VITE_API_URL to your backend Render URL after first deploy
- type: redis
name: continuityX-redis
plan: free