9 lines
287 B
Python
9 lines
287 B
Python
#!/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))
|
|
|
|
from flaschengeist.app import create_app
|
|
application = create_app()
|