# 🚀 Quick Start - 3 دقیقه تا اجرا ## روش 1: Python (ساده) ```bash unzip crypto-hf-integrated-final.zip cd crypto-dt-source-hf-integrated python3 -m venv venv source venv/bin/activate pip install -r requirements.txt uvicorn hf_unified_server:app --port 7860 ``` **سپس:** http://localhost:7860 ## روش 2: Docker (توصیه) ```bash unzip crypto-hf-integrated-final.zip cd crypto-dt-source-hf-integrated docker build -f Dockerfile.optimized -t crypto-hub . docker run -d -p 7860:7860 --name crypto-hub crypto-hub ``` **سپس:** http://localhost:7860 ## تست ```bash ./test_endpoints.sh ``` ## Dashboard Tabs 1. **Overview** - نمای کلی 2. **Market** - بازار 3. **Chart Lab** - نمودارها 4. **Sentiment & AI** - احساسات (10+ models) 5. **News** - اخبار با sentiment 6. **Providers** - 95 منابع 7. **API Explorer** - تست API 8. **Diagnostics** - سلامت سیستم 9. **Datasets & Models** - 14 dataset + 10 models 10. **Settings** - تنظیمات ## Features - ✅ Real-time data (WebSocket) - ✅ Ensemble sentiment (10+ HF models) - ✅ 14 crypto datasets - ✅ 95 API providers - ✅ Chart analysis - ✅ News aggregation ## مشکلات رایج **Port in use:** ```bash uvicorn hf_unified_server:app --port 8000 ``` **Model download:** ```bash export HF_TOKEN=your_token ``` **Dependencies:** ```bash pip install -r requirements.txt ``` ## مستندات - `README_HF_INTEGRATION.md` - کامل - `DEPLOYMENT_GUIDE.md` - Production - `ADMIN_HTML_INTEGRATION.md` - Frontend **Ready!** 🚀