Upload render.yaml with huggingface_hub
Browse files- render.yaml +14 -0
render.yaml
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Render deployment config
|
| 2 |
+
# Docs: https://render.com/docs/render-yaml
|
| 3 |
+
services:
|
| 4 |
+
- type: web
|
| 5 |
+
name: trend-hunter-ai
|
| 6 |
+
runtime: python
|
| 7 |
+
buildCommand: pip install -r requirements.txt
|
| 8 |
+
startCommand: python -m uvicorn backend.main:app --host 0.0.0.0 --port $PORT
|
| 9 |
+
envVars:
|
| 10 |
+
- key: YOUTUBE_API_KEY
|
| 11 |
+
sync: false # You will paste this manually in Render dashboard
|
| 12 |
+
- key: GEMINI_API_KEY
|
| 13 |
+
sync: false # Optional — for AI synthesis
|
| 14 |
+
plan: free
|