Такое может понадобиться, только если генерить код и писать его в файл "налету"
// чисто теоретически есть вариант с uWSGI. Установить touch-reload=/path/to/settings.py
uwsgi-docs.readthedocs.org/en/latest/Management.html
There are several ways to make uWSGI gracefully restart.
# using kill to send the signal
kill -HUP `cat /tmp/project-master.pid`
# or the convenience option --reload
uwsgi --reload /tmp/project-master.pid
# or if uwsgi was started with touch-reload=/tmp/somefile
touch /tmp/somefile
Если же создается отдельное приложение, то лучше посмотреть в сторону скриптов деплоя