Deployment

Deploy Chirp apps in production with Pounce

1 page in this section

Production with Pounce

Chirp apps run on Pounce, a production-grade ASGI server with enterprise features built-in.

Production Deployment
Full guide to deploying Chirp in production

Phase 5 & 6 features, Docker, Kubernetes, and configuration.

Quick Start

# Development (single worker, auto-reload)
chirp run myapp:app

# Production (multi-worker, all features)
chirp run myapp:app --production --workers 4 --metrics --rate-limit

Or from Python:

from chirp import App, AppConfig

config = AppConfig(debug=False, secret_key="...")
app = App(config=config)

# app.run() uses production server when debug=False
app.run()