Spaces:
Sleeping
Sleeping
Upload render.yaml with huggingface_hub
Browse files- render.yaml +20 -0
render.yaml
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
services:
|
| 2 |
+
- type: web
|
| 3 |
+
name: clientsphere-rag-backend
|
| 4 |
+
env: python
|
| 5 |
+
buildCommand: pip install -r requirements.txt
|
| 6 |
+
startCommand: uvicorn app.main:app --host 0.0.0.0 --port $PORT
|
| 7 |
+
envVars:
|
| 8 |
+
- key: GEMINI_API_KEY
|
| 9 |
+
sync: false # Set in Render dashboard
|
| 10 |
+
- key: ENV
|
| 11 |
+
value: prod
|
| 12 |
+
- key: LLM_PROVIDER
|
| 13 |
+
value: gemini
|
| 14 |
+
- key: ALLOWED_ORIGINS
|
| 15 |
+
sync: false # Set in Render dashboard
|
| 16 |
+
- key: JWT_SECRET
|
| 17 |
+
sync: false # Set in Render dashboard (same as Node.js backend)
|
| 18 |
+
- key: DEBUG
|
| 19 |
+
value: "false"
|
| 20 |
+
|