From 0934b583da0b382b26c8e3f52236374db1e54949 Mon Sep 17 00:00:00 2001 From: Stepan Vladovskiy Date: Mon, 6 May 2024 03:38:59 -0300 Subject: [PATCH] debug: change port to 8080 --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 5b5e976..bfda5bd 100644 --- a/main.py +++ b/main.py @@ -69,5 +69,5 @@ app = Starlette(debug=True, routes=routes) if __name__ == "__main__": import uvicorn - uvicorn.run(app, host='0.0.0.0', port=80) + uvicorn.run(app, host='0.0.0.0', port=8080) \ No newline at end of file