Change API host port to 8002

This commit is contained in:
vrubelroman 2026-03-21 23:14:51 +03:00
parent 63e28c279c
commit 0e3a0bfc48
4 changed files with 7 additions and 9 deletions

View file

@ -13,10 +13,10 @@ fi
# Check if the API service is running
echo "🔍 Checking Lichess API service..."
if curl -s http://localhost:8001/docs > /dev/null 2>&1; then
echo "✅ Lichess API service is running on http://localhost:8001"
if curl -s http://localhost:8002/docs > /dev/null 2>&1; then
echo "✅ Lichess API service is running on http://localhost:8002"
else
echo "⚠️ Warning: Lichess API service is not accessible at http://localhost:8001"
echo "⚠️ Warning: Lichess API service is not accessible at http://localhost:8002"
echo " Make sure your API service is running before starting the bot."
fi