def start(port=SERVER_PORT, host=SERVER_IP):
global SERVER_PORT
global SERVER_IP
SERVER_PORT = port
SERVER_IP = host
app.run(
host=host,
port=port,
threaded=True,
debug=True,
use_reloader=False)