blob: d43f8e31e75f00b67e15ccefb488723a3a162e82 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# SPDX-License-Identifier: CC0-1.0
# WSGI script for Hydrilla&Haketilo 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 hydrilla_website import website_app as application, set_secret
set_secret('please replace this with something appropriate')
|