Spaces:
Sleeping
Sleeping
| # FILE 11: render.yaml — Render.com deployment config | |
| # Push this repo to GitHub, connect to Render, and it auto-deploys | |
| services: | |
| - type: web | |
| name: ecom-qa-bert | |
| runtime: python | |
| buildCommand: pip install -r requirements.txt | |
| startCommand: cd src && gunicorn app:app --bind 0.0.0.0:$PORT --timeout 120 --workers 1 | |
| envVars: | |
| - key: PYTHON_VERSION | |
| value: "3.10.12" | |
| - key: TRANSFORMERS_CACHE | |
| value: /opt/render/.cache/huggingface | |
| plan: free | |