五件套徒手健身打卡应用:FastAPI+Vue3+PWA

This commit is contained in:
2026-08-13 06:33:56 +08:00
commit d529dad183
915 changed files with 295087 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
import os
# 数据库路径:默认 backend/workout.db
DB_PATH = os.getenv("DB_PATH", os.path.join(os.path.dirname(__file__), "workout.db"))
# 后端端口
PORT = int(os.getenv("PORT", "8780"))