Files
crewai/start.bat

26 lines
664 B
Batchfile
Raw Permalink Normal View History

2026-03-13 18:12:31 +08:00
@echo off
chcp 65001 >nul
echo ============================================================
echo SDLC Agent Demo - Quick Start Script
echo ============================================================
echo.
REM Check if .env file exists
if not exist ".env" (
echo [WARNING] .env file not found!
echo Please copy .env.example to .env and configure your API key:
echo copy .env.example .env
echo.
pause
exit /b 1
)
echo [INFO] Starting FastAPI server...
echo [INFO] Access URL: http://localhost:8000/static/index.html
echo [INFO] Press Ctrl+C to stop the server
echo.
python -m uvicorn main:app --reload --host 0.0.0.0 --port 8000
pause