feat: 初始化考培练系统项目

- 从服务器拉取完整代码
- 按框架规范整理项目结构
- 配置 Drone CI 测试环境部署
- 包含后端(FastAPI)、前端(Vue3)、管理端

技术栈: Vue3 + TypeScript + FastAPI + MySQL
This commit is contained in:
111
2026-01-24 19:33:28 +08:00
commit 998211c483
1197 changed files with 228429 additions and 0 deletions

25
.env.development Normal file
View File

@@ -0,0 +1,25 @@
# 全局开发环境配置文件
WORKSPACE_NAME="本地开发与测试"
ENVIRONMENT="development"
DEBUG=true
LOG_LEVEL="DEBUG"
# 端口分配
PYTHON_DEV_PORT=8000
COZE_BACKEND_PORT=8001
COZE_FRONTEND_PORT=3000
# 数据库配置
MYSQL_HOST="localhost"
MYSQL_PORT=3306
MYSQL_USER="root"
MYSQL_PASSWORD="password"
# Redis配置
REDIS_HOST="localhost"
REDIS_PORT=6379
# 开发模式
HOT_RELOAD=true
AUTO_RELOAD=true
DEVELOPMENT_MODE=true