Deploy Django 4/5 apps to production. Gunicorn server, managed PostgreSQL, automatic migrations, free SSL.
Deploy for free$ git push origin main
✓ Framework detected: Django 5
• Running pip install -r requirements.txt
• Applying migrations and booting Gunicorn
✓ App live with managed PostgreSQL
Repository: github.com/acme/django-app Branch: main Runtime: Python 3.12
pip install -r requirements.txt python manage.py collectstatic --noinput python manage.py migrate
DATABASE_URL=postgresql://postgres:***@db.internal/app SECRET_KEY=django-secret ALLOWED_HOSTS=.pandastack.app,app.acme.com
gunicorn config.wsgi:application --bind 0.0.0.0:8080 https://app.pandastack.app
Ship migrations, static assets, Gunicorn, and PostgreSQL together with a clean production workflow.
Start free