This commit is contained in:
livindra 2026-04-28 20:51:03 +07:00
parent b0bc661d42
commit bd1955e085
1 changed files with 1 additions and 1 deletions

2
app.py
View File

@ -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)