Set port to 5000

This commit is contained in:
Madis Mägi 2021-10-26 17:18:23 +03:00
parent bb3046db6a
commit 831531cf0d
1 changed files with 1 additions and 1 deletions

View File

@ -59,4 +59,4 @@ async def view_longpoll(request):
return stream(g, content_type="text/event-stream")
if __name__ == '__main__':
app.run(debug=False, host='::')
app.run(debug=False, host='::', port=5000)