mirror of
https://github.com/saymrwulf/alpha-arena.git
synced 2026-05-14 20:37:51 +00:00
A comprehensive autonomous trading system for Polymarket prediction markets featuring multi-LLM provider support, a native macOS menu bar app, and a web-based control dashboard. Key features: - Multi-agent trading system (Research, Risk, Execution, Reflection agents) - LLM provider flexibility (Anthropic, OpenAI, Google, xAI, Local models) - Automatic provider fallback chain for resilience - Native Swift/SwiftUI macOS menu bar application - FastAPI web dashboard with real-time WebSocket updates - Risk management with kill switch - Technical indicators and market analysis
86 lines
915 B
Text
86 lines
915 B
Text
# Virtual environment
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
eggs/
|
|
*.egg
|
|
wheels/
|
|
.installed.cfg
|
|
|
|
# Environment and secrets (never commit!)
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
*.pem
|
|
*.key
|
|
secrets/
|
|
credentials.json
|
|
secrets.yaml
|
|
|
|
# Logs and data
|
|
logs/
|
|
data/
|
|
*.log
|
|
*.jsonl
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
|
|
# mypy
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
|
|
# Jupyter
|
|
.ipynb_checkpoints/
|
|
|
|
# macOS App build artifacts
|
|
macos-app/AlphaArena.xcodeproj/project.xcworkspace/xcuserdata/
|
|
macos-app/AlphaArena.xcodeproj/xcuserdata/
|
|
macos-app/build/
|
|
macos-app/DerivedData/
|
|
*.xcuserstate
|
|
|
|
# Distribution artifacts
|
|
*.app
|
|
*.dmg
|
|
*.pkg
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
*.bak
|
|
|
|
# Config files with sensitive data (use config.example.yaml as template)
|
|
config.yaml
|
|
*.pid
|