shlogg · Early preview
Sm0Ke @sm0kedev

Django Corporate: HOT Reload In Docker With Gunicorn

Django Corporate now supports HOT Reload in Docker. Update `docker-compose.yml` to define codebase as volume and restart container always. Add `--reload` flag to Gunicorn in `entrypoint.sh`.

Hello Coders!
The video mentioned in this article presents Django Corporate an open-source starter enhanced with HOT Reload when running in Docker. This is useful for those that prefer to write the code in isolated environments like Docker and see the changes without restarting the instance (source code saved on GitHub). Thanks for reading!

👉 Django Corporate - Product Page
👉 Django Corporate - LIVE Demo

This enhancement was possible based on the following changes made to the Docker scripts:

✅ Define the codebase as a volume in docker-compose.yml


version: "3.8"
services:
  appseed-app:...