feat: 初始提交 v1.2.0 - 钢琴练习方案生成系统

This commit is contained in:
hmo
2026-04-21 20:00:33 +08:00
commit fd593bddf4
44 changed files with 10936 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
@echo off
cd /d "%~dp0"
echo ============================================
echo Working Directory: %CD%
echo Access: http://127.0.0.1:5001
echo ============================================
echo.
if exist "venv" goto usevenv
echo Creating virtual environment...
python -m venv venv
echo Installing dependencies...
call venv\Scripts\pip.exe install Flask Flask-SQLAlchemy reportlab Jinja2 requests
:usevenv
venv\Scripts\python.exe run.py
pause