From 42121d9ccaade6785e3bc27f14b3478b6abd035e Mon Sep 17 00:00:00 2001 From: mmcwilliams Date: Fri, 28 Jun 2024 12:53:38 -0400 Subject: [PATCH] Update host to 0.0.0.0 --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index c6ea366..114be10 100755 --- a/app.py +++ b/app.py @@ -70,6 +70,6 @@ def hashToLatLng(threewords): if __name__ == '__main__': - run(host='localhost', port=8080) + run(host='0.0.0.0', port=8080) app = bottle.default_app()