mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-10 22:03:09 +00:00
10 lines
328 B
Python
10 lines
328 B
Python
from __future__ import unicode_literals
|
|
|
|
import os
|
|
|
|
PROJECT_ROOT = os.path.dirname(os.path.abspath(__file__))
|
|
settings_module = "%s.settings" % PROJECT_ROOT.split(os.sep)[-1]
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", settings_module)
|
|
|
|
from django.core.wsgi import get_wsgi_application
|
|
application = get_wsgi_application()
|