CareerBot/stop.bat
ln0422 96997daed0 Initial commit: CareerBot full-stack career showcase with AI chatbot
- FastAPI backend with SQLAlchemy ORM and SQLite
- AI chatbot with OpenAI-compatible LLM integration (SSE streaming)
- Admin panel for content management, LLM config, token management
- Anonymous access with 3-question limit, token-based access control
- Recruiter intent detection with admin notification
- Resume generator (JD-based, Markdown to Word export)
- Chinese localized public interface

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-07 20:36:38 +08:00

29 lines
581 B
Batchfile

@echo off
chcp 65001 >nul 2>&1
echo ============================================
echo CareerBot - Stopping Server
echo ============================================
echo.
set found=0
:: Find and kill processes listening on port 8000
for /f "tokens=5" %%a in ('netstat -ano ^| findstr ":8000.*LISTENING"') do (
if %%a neq 0 (
echo [*] Killing process PID: %%a
taskkill /F /PID %%a >nul 2>&1
set found=1
)
)
if %found%==0 (
echo [*] No CareerBot server process found.
) else (
echo.
echo [OK] CareerBot server stopped.
)
echo.
pause