Skip to content

Instantly share code, notes, and snippets.

@lockie
Last active February 17, 2018 08:33
Show Gist options
  • Save lockie/8476889c360b6d2d2af22c596a72f5a3 to your computer and use it in GitHub Desktop.
Save lockie/8476889c360b6d2d2af22c596a72f5a3 to your computer and use it in GitHub Desktop.
# ...
import django
from django.utils import autoreload
import uwsgi
def reloader():
if django.conf.settings.DEBUG:
print('Starting debug reloader')
while True:
if autoreload.inotify_code_changed():
uwsgi.reload()
# ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment