mirror of
https://github.com/handsomezhuzhu/QQuiz.git
synced 2026-02-20 12:00:14 +00:00
## 新增 - auto_setup_and_run.bat: 全自动部署启动脚本 - 自动检查环境 - 自动配置数据库 - 自动安装所有依赖 - 自动启动前后端服务 - 一键完成所有配置 🚀 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
6 lines
110 B
Batchfile
6 lines
110 B
Batchfile
@echo off
|
|
REM 激活虚拟环境的批处理脚本
|
|
cd /d "%~dp0backend"
|
|
call venv\Scripts\activate.bat
|
|
cmd /k
|