From eb0121b7873269435150c82725a69168ace4e974 Mon Sep 17 00:00:00 2001 From: Kevin Bruton Date: Mon, 29 Sep 2025 09:59:56 +0200 Subject: [PATCH] fix: default webapp host --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 22d05647..2a40c9c2 100755 --- a/app.py +++ b/app.py @@ -27,7 +27,7 @@ def main(): # Configuration for uvicorn config = { "app": "webapp.main:app", - "host": "0.0.0.0", + "host": "localhost", "port": 8000, "reload": True, # Enable auto-reload for development "reload_dirs": [str(project_root)], # Watch for changes in project directory