chore: enhance .gitignore and remove obsolete documentation files - Reorganize .gitignore with categorized sections for better maintainability - Add comprehensive ignore patterns for Python, Node.js, databases, logs, and build artifacts - Add project-specific ignore rules for coordinator, explorer, and deployment files - Remove outdated documentation: BITCOIN-WALLET-SETUP.md, LOCAL_ASSETS_SUMMARY.md, README-CONTAINER-DEPLOYMENT.md, README-DOMAIN-DEPLOYMENT.md ```
40 lines
943 B
Bash
40 lines
943 B
Bash
#!/bin/bash
|
|
|
|
echo "=== Starting AITBC Miner Dashboard ==="
|
|
echo ""
|
|
|
|
# Find available port
|
|
PORT=8080
|
|
while [ $PORT -le 8090 ]; do
|
|
if ! netstat -tuln 2>/dev/null | grep -q ":$PORT "; then
|
|
echo "✓ Found available port: $PORT"
|
|
break
|
|
fi
|
|
echo "Port $port is in use, trying next..."
|
|
PORT=$((PORT + 1))
|
|
done
|
|
|
|
if [ $PORT -gt 8090 ]; then
|
|
echo "❌ No available ports found between 8080-8090"
|
|
exit 1
|
|
fi
|
|
|
|
# Start the dashboard
|
|
echo "Starting dashboard on port $PORT..."
|
|
nohup python3 -m http.server $PORT --bind 0.0.0.0 > dashboard.log 2>&1 &
|
|
PID=$!
|
|
|
|
echo ""
|
|
echo "✅ Dashboard is running!"
|
|
echo ""
|
|
echo "Access URLs:"
|
|
echo " Local: http://localhost:$PORT"
|
|
echo " Network: http://$(hostname -I | awk '{print $1}'):$PORT"
|
|
echo ""
|
|
echo "Dashboard file: miner-dashboard.html"
|
|
echo "Process ID: $PID"
|
|
echo "Log file: dashboard.log"
|
|
echo ""
|
|
echo "To stop: kill $PID"
|
|
echo "To view logs: tail -f dashboard.log"
|