File size: 431 Bytes
dc3d345
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
# 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