| # Render deployment config | |
| # Docs: https://render.com/docs/render-yaml | |
| services: | |
| - type: web | |
| name: trend-hunter-ai | |
| runtime: python | |
| buildCommand: pip install -r requirements.txt | |
| startCommand: python -m uvicorn backend.main:app --host 0.0.0.0 --port $PORT | |
| envVars: | |
| - key: YOUTUBE_API_KEY | |
| sync: false # You will paste this manually in Render dashboard | |
| - key: GEMINI_API_KEY | |
| sync: false # Optional — for AI synthesis | |
| plan: free | |