From 76562ae31da474610d82afb9f59bf8eb2f98776a Mon Sep 17 00:00:00 2001 From: Aura Rays Lab Date: Tue, 16 Jun 2026 22:40:47 +0900 Subject: [PATCH] Change host from 0.0.0.0 to 127.0.0.1 in CONTRIBUTING.md (#4422) Updated the host address in the run command for clarity. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 174a4f2f6..efb38ed24 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -37,7 +37,7 @@ Manual development uses Python 3.11+: python3 -m venv venv source venv/bin/activate pip install -r requirements.txt -python -m uvicorn app:app --host 0.0.0.0 --port 7000 +python -m uvicorn app:app --host 127.0.0.1 --port 7000 ``` Windows is not actively tested. Docker on Linux or a Linux/macOS manual install is the safer path for now.