Generating commit message...

This commit is contained in:
2025-08-30 15:52:52 +08:00
commit 55a9840ba0
23 changed files with 612 additions and 0 deletions

26
start_project.bat Normal file
View File

@@ -0,0 +1,26 @@
@echo off
echo 爱鉴花项目启动脚本
rem 打开微信小程序项目
cd mini_program
start .
cd ..
rem 打开后端项目
cd backend
start .
cd ..
rem 打开后台管理系统项目
cd admin_website
start .
cd ..
rem 打开官网项目
cd official_website
start .
cd ..
echo 项目已启动,请在对应的编辑器中打开各个项目文件夹。
pause