Spaces:
Configuration error
Configuration error
Jeetandar N Silwani commited on
Commit ·
6ce3fc3
1
Parent(s): 788bfb5
Add render.yaml
Browse files- render.yaml +15 -0
render.yaml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
services:
|
| 2 |
+
- type: web
|
| 3 |
+
name: memorybot
|
| 4 |
+
runtime: python
|
| 5 |
+
buildCommand: pip install -r requirements.txt
|
| 6 |
+
startCommand: uvicorn main:app --host 0.0.0.0 --port 10000
|
| 7 |
+
envVars:
|
| 8 |
+
- key: SECRET_KEY
|
| 9 |
+
sync: false
|
| 10 |
+
- key: ENCRYPTION_KEY
|
| 11 |
+
sync: false
|
| 12 |
+
- key: OPENAI_API_KEY
|
| 13 |
+
sync: false
|
| 14 |
+
- key: HF_TOKEN
|
| 15 |
+
sync: false
|