Files
web_management/run
Andreas Stephanides c4ab1f9fdd move flaskapp
2017-07-25 23:42:24 +02:00

10 lines
235 B
Python
Executable File

#!./env/bin/python
from flaskapp import app
#app.run(debug=True)
if __name__ == "__main__":
# if len(sys.argv) > 1 and sys.argv[1] == "build":
# freezer.freeze()
# else:
app.run(host='0.0.0.0', port=4444, debug=True)