Files
aitbc/apps/trade-exchange/deploy_simple.sh
oib 9b9c5beb23 ```
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
```
2026-01-24 14:44:51 +01:00

55 lines
1.7 KiB
Bash
Executable File

#!/bin/bash
# Deploy Simple Real AITBC Trade Exchange
echo "🚀 Deploying Simple Real AITBC Trade Exchange..."
# Kill existing services
echo "🔄 Stopping existing services..."
pkill -f "server.py --port 3002" || true
pkill -f "exchange_api.py" || true
pkill -f "simple_exchange_api.py" || true
# Start the Simple Exchange API server
echo "🔥 Starting Simple Exchange API server on port 3003..."
nohup python3 simple_exchange_api.py > simple_exchange_api.log 2>&1 &
sleep 2
# Replace the frontend with real trading version
echo "🌐 Updating frontend to use real trading..."
cp index.real.html index.html
# Start the frontend
echo "🌐 Starting Exchange frontend..."
nohup python3 server.py --port 3002 > exchange_frontend.log 2>&1 &
sleep 2
# Check if services are running
echo "✅ Checking services..."
if pgrep -f "simple_exchange_api.py" > /dev/null; then
echo "✓ Simple Exchange API is running on port 3003"
else
echo "✗ Simple Exchange API failed to start"
echo " Check log: tail -f simple_exchange_api.log"
fi
if pgrep -f "server.py --port 3002" > /dev/null; then
echo "✓ Exchange frontend is running on port 3002"
else
echo "✗ Exchange frontend failed to start"
fi
echo ""
echo "🎉 Simple Real Exchange Deployment Complete!"
echo ""
echo "📍 Access the exchange at:"
echo " https://aitbc.bubuit.net/Exchange"
echo ""
echo "📊 The exchange now shows REAL trades from the database!"
echo " - Recent trades are loaded from the database"
echo " - Order book shows live orders"
echo " - You can place real buy/sell orders"
echo ""
echo "📝 Logs:"
echo " API: tail -f simple_exchange_api.log"
echo " Frontend: tail -f exchange_frontend.log"