Skip to main content
All integrationsDeployment

Render Integration

One-click FastAPI deploy on Render with Postgres and Redis.

The included render.yaml blueprint provisions your FastAPI service, Postgres database, and Redis instance in one click. Alembic migrations run automatically on each deploy.

Setup in 4 steps

  1. 1Fork or clone the repo and connect it to Render
  2. 2Render detects render.yaml and provisions all services automatically
  3. 3Add your API keys in the Render environment variables UI
  4. 4Push to main — Render builds, migrates, and deploys

What's included

  • render.yaml blueprint provisions all services automatically
  • Postgres and Redis add-ons provisioned via blueprint
  • Build command runs alembic upgrade head before starting
  • Web service + background worker (Celery) in one blueprint
  • Preview environments for pull requests

Code example

example.py
# render.yaml (included in the kit)
services:
  - type: web
    name: fastapikit-api
    buildCommand: "pip install -r requirements.txt"
    startCommand: "alembic upgrade head && uvicorn app.main:app"
    envVars:
      - fromGroup: fastapikit-secrets
  - type: worker
    name: fastapikit-worker
    startCommand: "celery -A app.worker worker"

Full documentation: /docs/deployment

Render integration pre-wired and ready.

FastAPI AI Kit ships with Render configured out of the box. No manual setup required.

Ready to ship your AI backend this weekend?

Join developers who skipped weeks of boilerplate and went straight to building.

Read the docs
No subscriptions · One-time payment · Lifetime updates