diff options
Diffstat (limited to 'wsgi.py')
-rw-r--r-- | wsgi.py | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -0,0 +1,14 @@ +# SPDX-License-Identifier: CC0-1.0 + +# WSGI script for koszko.org website. +# +# Copyright (C) 2022 Wojtek Kosior + +# Uncomment the lines below if you want to use a virtualenv installation of +# the website package. + +#from pathlib import Path +#path = Path('/path/to/virtualenv/bin/activate_this.py') +#exec(path.read_text(), {'__file__': str(path)}) + +from koszko_org_website.app import website_app as application |