From 4eea90c32dfdf18af06fca8cd80fc5b5250022b5 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Mon, 3 Jun 2024 12:32:45 +1000 Subject: [PATCH] fix: Listen on all interfaces --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 3fc71b3..3da70cc 100644 --- a/main.py +++ b/main.py @@ -98,4 +98,4 @@ def get_auctions(): if __name__ == "__main__": - app.run(host="127.0.0.1", port=8080, debug=True) + app.run(host="0.0.0.0", port=8080, debug=True)