db new
This commit is contained in:
parent
b0bc661d42
commit
bd1955e085
2
app.py
2
app.py
|
|
@ -911,6 +911,6 @@ def export_excel():
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
port = int(os.environ.get('PORT', 5000))
|
port = os.environ.get('PORT', 5000)
|
||||||
debug = os.environ.get('FLASK_DEBUG', '0') == '1'
|
debug = os.environ.get('FLASK_DEBUG', '0') == '1'
|
||||||
app.run(host='0.0.0.0', port=port, debug=debug)
|
app.run(host='0.0.0.0', port=port, debug=debug)
|
||||||
Loading…
Reference in New Issue