From 114d2d92147f53a1ed1d0090feedb3fb0b50d064 Mon Sep 17 00:00:00 2001 From: tr4ck3ur Date: Sat, 14 Feb 2015 03:35:21 +0100 Subject: harmonize file structure for third party plugins --- wsgi.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 wsgi.py (limited to 'wsgi.py') diff --git a/wsgi.py b/wsgi.py new file mode 100644 index 0000000..c03da7a --- /dev/null +++ b/wsgi.py @@ -0,0 +1,9 @@ +APP_CONFIG = "production.ini" + +#Setup logging +import logging.config +logging.config.fileConfig(APP_CONFIG) + +#Load the application +from paste.deploy import loadapp +application = loadapp('config:%s' % APP_CONFIG) -- cgit v1.2.3-54-g00ecf