@echo off title BTC Dashboard Server cd /d "%~dp0" echo =================================== echo Starting BTC Dashboard Server echo =================================== echo. echo Dashboard: http://localhost:8000/dashboard echo API Docs: http://localhost:8000/docs echo. echo Press Ctrl+C to stop echo =================================== echo. call venv\Scripts\uvicorn src.api.server:app --host 0.0.0.0 --port 8000 --reload pause