You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
367 B
22 lines
367 B
|
1 month ago
|
@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
|