flaschengeist/run_flaschengeist

11 lines
162 B
Plaintext
Raw Normal View History

2020-08-13 17:48:26 +00:00
#!/usr/bin/python3
from flaschengeist.app import app
2019-01-13 19:07:46 +00:00
2019-04-17 12:46:46 +00:00
""" Main
Start the backend
"""
2019-01-13 19:07:46 +00:00
if __name__ == '__main__':
app.run(debug=True, host='0.0.0.0')