Skip to content

Commit

Permalink
Add .wsgi file that was manually added before
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrillkuettel committed May 15, 2024
1 parent a1eea2a commit 408a3ef
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions privatim.wsgi
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import os
from pyramid.paster import setup_logging
from pyramid.paster import get_app

dir = os.path.dirname(__file__)
ini_path = os.path.join(dir, 'production.ini')

setup_logging(ini_path)
application = get_app(ini_path, 'main')

0 comments on commit 408a3ef

Please sign in to comment.