A Django 2.0 base template featuring all recommended best practices for deployment on Heroku and local development.
-
Updated
Oct 25, 2019 - Python
Add a description, image, and links to the gunicorn topic page so that developers can more easily learn about it.
To associate your repository with the gunicorn topic, visit your repo's landing page and select "manage topics."
http://docs.gunicorn.org/en/latest/settings.html#preload-app
Load application code before the worker processes are forked. By preloading an application you can save some RAM resources as well as speed up server boot times. Although, if you defer application loading to each worker process, you can reload your application code easily by restarting workers.
This seems desirable. Reloading worke