Try to set host
kwarg in app.run()
:
# change these values
PORT = 8000
ADDRESS = 127.0.0.1
if __name__ == '__main__':
app.run(
port=PORT,
host=ADDRESS)
Try to set host
kwarg in app.run()
:
# change these values
PORT = 8000
ADDRESS = 127.0.0.1
if __name__ == '__main__':
app.run(
port=PORT,
host=ADDRESS)