Skip to content

Commit

Permalink
Merge pull request #19 from a1russell/master
Browse files Browse the repository at this point in the history
WSGI file
  • Loading branch information
ericsmalling committed Feb 14, 2014
2 parents 12f9276 + b7b4a94 commit d204a65
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions jenkins_radiator/radiator/wsgi.py
@@ -0,0 +1,9 @@
import os
import sys

sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__),
'..', '..')))
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()

0 comments on commit d204a65

Please sign in to comment.