Update main.py

Change default port
This commit is contained in:
syeopite 2021-05-22 06:10:51 -07:00 committed by GitHub
parent 91b9f64daa
commit 8257081004
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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()