wsgi: Add basic WSGI module
This commit is contained in:
7
src/dcow/wsgi.py
Normal file
7
src/dcow/wsgi.py
Normal file
@@ -0,0 +1,7 @@
|
||||
import os
|
||||
|
||||
import dcow.app
|
||||
|
||||
|
||||
config = os.environ.get('DCOW_CONFIG', 'production.ini')
|
||||
application = dcow.app.Application.create(config)
|
||||
Reference in New Issue
Block a user