Django is the batteries-included Python web framework. Deploy your Django project with one command — no WSGI plumbing, no collectstatic headaches, no server config.
Django handles everything in code, but going from manage.py runserver to production is a multi-hour ordeal.
Recommended plan for Django
Set ALLOWED_HOSTS to include your .instapods.app domain. InstaPods injects env vars for SECRET_KEY, DEBUG, and DATABASE_URL so you don't hardcode secrets.
SQLite works for small projects. For PostgreSQL, use an external managed database and set DATABASE_URL via environment variables in the InstaPods dashboard.
InstaPods runs collectstatic during deploy. Static files are served via the reverse proxy. For user uploads, configure MEDIA_ROOT to a persistent path.
One command. Real server. HTTPS included. No DevOps degree required.
Get Started