flaschengeist/flaschengeist.wsgi

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
287 B
Plaintext
Raw Permalink Normal View History

2020-10-31 00:17:14 +00:00
#!/usr/bin/python3
# If you use a virtual env, this might become handy:
# activate_this = '/path/to/env/bin/activate_this.py'
# with open(activate_this) as file_:
# exec(file_.read(), dict(__file__=activate_this))
2020-10-31 00:17:14 +00:00
from flaschengeist.app import create_app
application = create_app()