WAVE 77: QUICK REFERENCE CARD ============================== DEPLOYED SERVICES: ------------------ API Gateway: localhost:50050 (PID 1747365) Trading Service: localhost:50051 (PID 1257178) Backtesting: localhost:50052 (PID 1739871) ML Training: localhost:50053 (PID 1270680) STOP SERVICES: -------------- kill 1747365 # API Gateway kill 1257178 # Trading Service kill 1739871 # Backtesting Service kill 1270680 # ML Training Service RESTART API GATEWAY: -------------------- cd /home/jgrusewski/Work/foxhunt set -a && source .env && set +a export TRADING_SERVICE_URL=http://localhost:50051 export BACKTESTING_SERVICE_URL=http://localhost:50052 export ML_TRAINING_SERVICE_URL=http://localhost:50053 GRPC_PORT=50050 RUST_LOG=info nohup ./target/release/api_gateway > logs/api_gateway.log 2>&1 & RESTART BACKTESTING SERVICE: ---------------------------- cd /home/jgrusewski/Work/foxhunt set -a && source .env && set +a GRPC_PORT=50052 RUST_LOG=info nohup ./target/release/backtesting_service > logs/backtesting_service.log 2>&1 & CHECK STATUS: ------------- ss -tlnp | grep -E '50050|50051|50052|50053' ps aux | grep -E 'api_gateway|trading_service|backtesting_service|ml_training_service' | grep -v grep VIEW LOGS: ---------- tail -f logs/api_gateway.log tail -f logs/backtesting_service.log tail -f logs/trading_service.log tail -f /tmp/ml_training_service.log INFRASTRUCTURE: --------------- PostgreSQL: localhost:5433 (api_gateway_test_postgres) Redis: localhost:6380 (api_gateway_test_redis) Vault: localhost:8200 (foxhunt-vault) Prometheus: localhost:9099 (foxhunt-prometheus) Grafana: localhost:3000 (foxhunt-grafana) HEALTH CHECK: ------------- ./health_check.sh DOCUMENTATION: -------------- Architecture: docs/WAVE77_AGENT6_API_GATEWAY_DEPLOYMENT.md Summary: logs/wave77_agent6_deployment_summary.txt This Reference: logs/wave77_quick_reference.txt