Update start_proxy.sh to use 127.0.0.1:17765 by default

- Change host from 0.0.0.0 to 127.0.0.1 for improved security
- Change port from 8000 to 17765 to match main.py default
- Ensures consistency between development and production modes
parent 78bd7ea5
...@@ -43,4 +43,4 @@ pip install -r requirements.txt ...@@ -43,4 +43,4 @@ pip install -r requirements.txt
# Start the proxy server # Start the proxy server
echo "Starting AISBF development server..." echo "Starting AISBF development server..."
uvicorn main:app --host 0.0.0.0 --port 8000 --reload uvicorn main:app --host 127.0.0.1 --port 17765 --reload
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment