Add basic wsgi module

This commit is contained in:
Lance Edgar 2017-04-01 19:52:41 -05:00
parent e46b18f674
commit 52fe782e14

4
hotcooler/wsgi.py Normal file
View file

@ -0,0 +1,4 @@
import sys
from pyramid.paster import get_app
application = get_app('{}/app/production.ini'.format(sys.prefix))