From 8257081004924b098c482cb32363405591bf43e8 Mon Sep 17 00:00:00 2001 From: syeopite <70992037+syeopite@users.noreply.github.com> Date: Sat, 22 May 2021 06:10:51 -0700 Subject: [PATCH] Update main.py Change default port --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 6631bbe..b75c69f 100644 --- a/main.py +++ b/main.py @@ -23,7 +23,7 @@ CONFIG_FILE.touch(exist_ok=True) with open(f"{CONFIG_FILE}") as config: config = pytomlpp.loads(config.read()) if not config: - config = {"port": 8080, "host": "0.0.0.0"} + config = {"port": 7192, "host": "0.0.0.0"} routes = web.RouteTableDef()