feat: init fitness-coach (backend + miniprogram)

- backend: NestJS service with exercise/plan data
- miniprogram: WeChat mini program client
- exclude node_modules, dist, runtime data-store, local env
This commit is contained in:
2026-07-22 00:35:40 +08:00
commit b3b58e66fb
103 changed files with 154759 additions and 0 deletions

36
.gitignore vendored Normal file
View File

@@ -0,0 +1,36 @@
# OS / editor
.DS_Store
Thumbs.db
*.swp
*.swo
# dependencies
node_modules/
# build output
dist/
dist-ssr/
out/
build/
# runtime data (local JSON "database")
backend/data-store/
# env / secrets
.env
.env.*
!.env.example
# logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# wechat devtools private config (auto-generated)
miniprogram/project.private.config.json
# coverage / cache
coverage/
.cache/
.turbo/