regluit/deploy/please.wsgi

10 lines
226 B
Plaintext
Raw Normal View History

2012-01-26 02:12:23 +00:00
#!/usr/bin/env python
import os
import django.core.handlers.wsgi
os.environ['CELERY_LOADER'] = 'django'
os.environ['DJANGO_SETTINGS_MODULE'] = 'regluit.settings.please'
application = django.core.handlers.wsgi.WSGIHandler()