Nephroscreen / render.yaml
sadiqM's picture
Initial commit: NephroScreen — CKD screening ML app
dc3d345
Raw
History Blame Contribute Delete
431 Bytes
# Render.com blueprint — free web service for the FastAPI backend + frontend.
# Deploy: push to GitHub, then "New + > Blueprint" and point Render at this repo.
services:
- type: web
name: nephroscreen
runtime: python
plan: free
buildCommand: pip install -r requirements.txt && pip install -e .
startCommand: uvicorn api.main:app --host 0.0.0.0 --port $PORT
healthCheckPath: /health
autoDeploy: true