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.
This commit is contained in:
Aura Rays Lab
2026-06-16 22:40:47 +09:00
committed by GitHub
parent 497f455da6
commit 76562ae31d
+1 -1
View File
@@ -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.