10 lines
235 B
Python
Executable File
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)
|