Initial commit: Gold Trading Simulator with AI-powered analysis

This commit is contained in:
Krikorios
2025-11-16 00:50:04 +02:00
commit 72c1d3adb7
128 changed files with 16232 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
# Gold Trading Simulator - Backend Startup Script
# Uses simulated price feed - NO external API keys required!
cd "$(dirname "$0")"
echo "Starting Gold Trading Simulator Backend..."
echo "✓ Using simulated live price feed (no API calls)"
echo "✓ Listening on http://localhost:8000"
echo ""
# Activate virtual environment and start server
source ../.venv/bin/activate
PYTHONPATH=$(pwd) python -m uvicorn app.main:app --reload --port 8000