Moved wolnelektury.fcgi and wolnelektury.wsgi to deploy subdirectory of project folder.
[wolnelektury.git] / wolnelektury.wsgi
diff --git a/wolnelektury.wsgi b/wolnelektury.wsgi
deleted file mode 100644 (file)
index 2732713..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env python
-from os.path import abspath, dirname, join
-import sys
-
-# Redirect sys.stdout to sys.stderr for bad libraries like geopy that use
-# print statements for optional import exceptions.
-sys.stdout = sys.stderr
-
-# Add apps and lib directories to PYTHONPATH
-sys.path.insert(0, abspath(join(dirname(__file__), '../apps')))
-sys.path.insert(0, abspath(join(dirname(__file__), '../lib')))
-
-# Emulate manage.py path hacking.
-sys.path.insert(0, abspath(join(dirname(__file__), "../../")))
-sys.path.insert(0, abspath(join(dirname(__file__), "../")))
-
-# Run Django
-os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
-
-from django.core.handlers.wsgi import WSGIHandler
-application = WSGIHandler()
-