diff --git a/db.py b/db.py index 5288a01..d1c9ae4 100644 --- a/db.py +++ b/db.py @@ -2,7 +2,7 @@ import os import json if not os.path.exists('config.json'): - db = {"our_port": 0000, "ports": [], "domain": "http://127.0.0.1:8000"} + db = {"our_port": 0000, "ports": [], "domain": "http://0.0.0.0:8000"} js = json.dumps(db, indent=2) with open("config.json", "w") as outfile: outfile.write(js)