0d25548ed5
- Move utility scripts to scripts/ (check_market, check_positions, etc.) - Move test files to tests/ (test_modules, test_mt5_connection, etc.) - Move deprecated dashboards to archive/ - Move research files to docs/research/ - Add sys.path fix to all moved Python files - Rewrite README.md with architecture diagram and badges - Add CLAUDE.md project guide - Add MIT LICENSE - Update .gitignore with archive/ pattern Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
30 lines
799 B
Batchfile
30 lines
799 B
Batchfile
@echo off
|
|
echo ========================================
|
|
echo AI Trading Bot - Web Dashboard
|
|
echo ========================================
|
|
echo.
|
|
|
|
:: Start API Server
|
|
echo Starting API Server on port 8000...
|
|
start "API Server" cmd /k "cd /d %~dp0 && python web-dashboard\api\main.py"
|
|
|
|
:: Wait a bit for API to start
|
|
timeout /t 3 /nobreak > nul
|
|
|
|
:: Start Next.js Frontend
|
|
echo Starting Web Dashboard on port 3000...
|
|
start "Web Dashboard" cmd /k "cd /d %~dp0\web-dashboard && npm run dev"
|
|
|
|
echo.
|
|
echo ========================================
|
|
echo Dashboard starting...
|
|
echo.
|
|
echo API Server: http://localhost:8000
|
|
echo Web Dashboard: http://localhost:3000
|
|
echo ========================================
|
|
echo.
|
|
echo Press any key to open dashboard in browser...
|
|
pause > nul
|
|
|
|
start http://localhost:3000
|