X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/d157af1061e9f03f59ea909d7d25f4a0b41f1c0e..357027375ff8867f42ca34bcbfb5a78b5b185fc3:/wolnelektury/wsgi.py diff --git a/wolnelektury/wsgi.py b/wolnelektury/wsgi.py deleted file mode 100644 index 46ea2fd01..000000000 --- a/wolnelektury/wsgi.py +++ /dev/null @@ -1,22 +0,0 @@ -import os -import os.path -import sys - -ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) - -# Add apps and lib directories to PYTHONPATH -sys.path = [ - ROOT, - os.path.join(ROOT, 'wolnelektury'), - os.path.join(ROOT, 'apps'), - os.path.join(ROOT, 'lib'), - os.path.join(ROOT, 'lib/librarian'), -] + sys.path - - -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings") - -# This application object is used by the development server -# as well as any WSGI server configured to use this file. -from django.core.wsgi import get_wsgi_application -application = get_wsgi_application()