wsgi: Add basic WSGI module

master
Dustin 2023-12-15 14:27:39 -06:00
parent 810f7d07b8
commit 06ef3d4146
1 changed files with 7 additions and 0 deletions

7
src/dcow/wsgi.py Normal file
View File

@ -0,0 +1,7 @@
import os
import dcow.app
config = os.environ.get('DCOW_CONFIG', 'production.ini')
application = dcow.app.Application.create(config)