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.
21 lines
442 B
21 lines
442 B
@echo off
|
|
echo ========================================
|
|
echo 启动代码漏洞检测系统
|
|
echo ========================================
|
|
|
|
echo.
|
|
echo 步骤1: 初始化数据库...
|
|
cd backend
|
|
python init_db.py
|
|
if %errorlevel% neq 0 (
|
|
echo 数据库初始化失败!
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
echo.
|
|
echo 步骤2: 启动后端服务...
|
|
echo 后端将在 http://localhost:8000 启动
|
|
echo 按 Ctrl+C 停止后端服务
|
|
echo.
|
|
python main.py |