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
+19
View File
@@ -0,0 +1,19 @@
# Database
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/gold_trading_db
# API Keys (Required)
ALPHA_VANTAGE_API_KEY=your_alpha_vantage_key_here
OPENROUTER_API_KEY=your_openrouter_key_here
# Optional News API Keys (for enhanced news coverage)
FINNHUB_API_KEY=
NEWS_API_KEY=
# Application
APP_ENV=development
DEBUG=True
CORS_ORIGINS=http://localhost:3000,http://127.0.0.1:3000
# Server
HOST=0.0.0.0
PORT=8000