aboutsummaryrefslogtreecommitdiff
path: root/wsgi.py
diff options
context:
space:
mode:
authorWojtek Kosior <koszko@koszko.org>2022-11-17 09:36:40 +0100
committerWojtek Kosior <koszko@koszko.org>2022-11-17 10:00:45 +0100
commit53d6b0e185335b43217cd7132719bc6e80c744c1 (patch)
treee7d74faca6d8777829d58162e4fec1ddfae15678 /wsgi.py
parent08f4d63f450ccd96f5077bc60774d8f1fecec92c (diff)
downloadkoszko-org-website-53d6b0e185335b43217cd7132719bc6e80c744c1.tar.gz
koszko-org-website-53d6b0e185335b43217cd7132719bc6e80c744c1.zip
add WSGI script and fix licenses in Guix package definition
Diffstat (limited to 'wsgi.py')
-rw-r--r--wsgi.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/wsgi.py b/wsgi.py
new file mode 100644
index 0000000..daebfc8
--- /dev/null
+++ b/wsgi.py
@@ -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