DEV Community

Discussion on: Docker, Django, Traefik, and IntercoolerJS is My Go-To Stack for Building a SaaS in 2020

Collapse
 
brennankharris profile image
brennan harris • Edited

I'll have to look into intercooler. I was looking for a simpler implementation for some AJAXy stuff.
question: how do you serve content from the Django Docker container? do you simply issue the runserver command?

Collapse
 
simplecto profile image
Sam Texas

I use gunicorn and wsgi for production-ready deployments. Here is a template I use as a production-ready Django reference implementation: github.com/simplecto/django-refere...

Have a look at the Dockerfile there :-)