wsgi: Add basic WSGI module

This commit is contained in:
2023-12-15 14:27:39 -06:00
parent 810f7d07b8
commit 06ef3d4146

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)