Deploy Django on Your Own Server
Deploy Django applications with managed PostgreSQL, Gunicorn, and static file serving. Migrations run automatically on every deploy.
Quickstart
From your project root, deploy with your preferred package manager:
npx @temps-sdk/cli up
Temps detects your requirements.txt or pyproject.toml, installs dependencies, and starts your app with Gunicorn. PostgreSQL is provisioned on first deploy.
What Temps Handles Automatically
| Feature | How Temps handles it |
|---|---|
| Install | pip install -r requirements.txt |
| WSGI server | Gunicorn with multiple workers |
| Static files | WhiteNoise middleware |
| Migrations | python manage.py migrate on every deploy |
| HTTPS | Let's Encrypt certificate, auto-renewed |
| Port | PORT env var injected, defaults to 8000 |
| Health checks | HTTP health check on / |
Required Settings
Ensure your settings.py is production-ready:
# settings.py
import os
ALLOWED_HOSTS = [os.environ.get("TEMPS_DOMAIN", "*")]
DATABASES = {
"default": {
"ENGINE": "django.db.backends.postgresql",
"NAME": os.environ.get("DB_NAME"),
"USER": os.environ.get("DB_USER"),
"PASSWORD": os.environ.get("DB_PASSWORD"),
"HOST": os.environ.get("DB_HOST", "localhost"),
"PORT": os.environ.get("DB_PORT", "5432"),
}
}
STATIC_ROOT = os.path.join(BASE_DIR, "staticfiles")
STATICFILES_STORAGE = "whitenoise.storage.CompressedManifestStaticFilesStorage"
MIDDLEWARE = [
"django.middleware.security.SecurityMiddleware",
"whitenoise.middleware.WhiteNoiseMiddleware",
# ...
]
Environment Variables
npx @temps-sdk/cli environments vars set SECRET_KEY "your-secret-key" -e production npx @temps-sdk/cli environments vars set DEBUG "False" -e production npx @temps-sdk/cli environments vars set ALLOWED_HOSTS "yourdomain.com" -e production
Temps injects DATABASE_URL automatically when a managed PostgreSQL service is attached.
Managed PostgreSQL
Add a database from Project → Services → Add Service → PostgreSQL, or via CLI. Temps injects the connection details as environment variables and runs migrations on each deploy.
Platform behavior
These rules apply to every app deployed on Temps, regardless of framework.
The one requirement: your app must listen on the port in the PORT environment variable and bind to 0.0.0.0 — not localhost or 127.0.0.1. Temps runs your app in a container and routes traffic from the host, so an app bound to localhost only accepts connections from inside the container and will fail its health check.
Health checks
After your container starts, Temps sends HTTP GET requests to verify it is healthy before routing traffic to it.
- Path:
/(the root of your application) - Success: 2 consecutive responses with a 2xx or 3xx status code
- Timeout: 300 seconds (5 minutes) for the app to become healthy
- Retry interval: every 5 seconds
Connection errors while the app is still starting are retried without penalty. If the app returns 4xx or 5xx errors for 60 consecutive seconds, the deployment fails. Customize the check by adding a .temps.yaml to your repository root:
health:
path: /health
status: 200
interval: 30
timeout: 5
retries: 3/health endpoint that returns a simple 200. This avoids issues where / requires authentication or returns a redirect.Auto-injected environment variables
Temps injects these variables into every deployment automatically:
| Variable | Value | Description |
|---|---|---|
PORT | Resolved port | The port your app must listen on |
HOST | 0.0.0.0 | Bind address |
SENTRY_DSN | Auto-generated | Error tracking endpoint |
TEMPS_API_URL | Your Temps URL | Platform API endpoint |
TEMPS_API_TOKEN | Deployment token | Authentication for Temps SDKs |
OTEL_EXPORTER_OTLP_ENDPOINT | Your Temps OTLP URL | OpenTelemetry trace collection |
OTEL_SERVICE_NAME | Project name | Service identifier for traces |
You do not need to configure these manually. They are available in process.env (Node.js), os.environ (Python), os.Getenv (Go), and the equivalent in other languages.