Moved host and port to config file

This commit is contained in:
Vivek Teega 2023-04-30 11:02:53 +00:00
parent 9b50ee8af3
commit 71f32d96e4

View File

@ -2444,4 +2444,4 @@ scheduler.start()
atexit.register(lambda: scheduler.shutdown())
if __name__ == "__main__":
app.run(debug=debug_status, host='0.0.0.0', port=5009)
app.run(debug=debug_status, host=HOST, port=PORT)