@echo off echo Starting A Stock AI Backend Server... echo. cd /d "%~dp0" if not exist ".env" ( echo Warning: .env file not found, using .env.example copy .env.example .env ) echo Installing dependencies... pip install -r requirements.txt echo. echo Starting server on http://localhost:8000 echo Press Ctrl+C to stop the server echo. python main.py pause