项目重构: 整理目录结构, 更新前后端代码, 添加测试和数据库迁移

This commit is contained in:
AIGC Developer
2025-12-30 10:24:19 +08:00
parent 5344148a1c
commit 38630dbb66
117 changed files with 1987 additions and 1316 deletions

View File

@@ -0,0 +1,36 @@
@echo off
chcp 65001 >nul
echo ====================================
echo 启动 FRP 客户端
echo ====================================
echo.
REM 检查 frpc.ini 是否存在
if not exist "frpc.ini" (
echo [错误] frpc.ini 配置文件不存在!
echo 请先创建 frpc.ini 配置文件
echo 可以参考 frpc.ini.example 文件
pause
exit /b 1
)
REM 检查 frpc.exe 是否存在
if not exist "frpc.exe" (
echo [错误] frpc.exe 不存在!
echo 请先下载 FRP 客户端:
echo https://github.com/fatedier/frp/releases
echo 解压后,将 frpc.exe 放在当前目录
pause
exit /b 1
)
echo 正在启动 FRP 客户端...
echo 配置文件: frpc.ini
echo.
REM 启动 FRP 客户端
frpc.exe -c frpc.ini
pause