regluit/deploy/regluit.wsgi

10 lines
224 B
Plaintext
Raw Normal View History

#!/usr/bin/env python
import os
import django.core.handlers.wsgi
os.environ['CELERY_LOADER'] = 'django'
2011-10-07 03:14:29 +00:00
os.environ['DJANGO_SETTINGS_MODULE'] = 'regluit.settings.prod'
application = django.core.handlers.wsgi.WSGIHandler()