项目初始化

This commit is contained in:
Stev_Wang
2026-01-04 17:19:04 +08:00
commit 93aae460af
41 changed files with 6922 additions and 0 deletions

187
.gitignore vendored Normal file
View File

@@ -0,0 +1,187 @@
# ====================================
# 依赖目录
# ====================================
node_modules/
jspm_packages/
# ====================================
# 构建输出
# ====================================
# 前端构建输出
frontend/dist/
frontend/.temp/
frontend/.cache/
# 后端构建输出
backend/dist/
backend/build/
# ====================================
# 环境变量文件
# ====================================
# 根目录环境变量
.env
.env.local
.env.*.local
# 前端环境变量
frontend/.env.local
frontend/.env.*.local
# 后端环境变量
backend/.env
backend/.env.local
backend/.env.*.local
# ====================================
# 缓存目录
# ====================================
# TypeScript 缓存
*.tsbuildinfo
# Vite 缓存
frontend/node_modules/.vite/
# npm 缓存
.npm
# eslint 缓存
.eslintcache
# stylelint 缓存
.stylelintcache
# Microbundle 缓存
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/
# parcel-bundler 缓存
.cache
.parcel-cache
# Snowpack 缓存
web_modules/
# ====================================
# 日志文件
# ====================================
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
# ====================================
# 运行时数据
# ====================================
pids
*.pid
*.seed
*.pid.lock
# ====================================
# 测试覆盖率
# ====================================
coverage/
*.lcov
.nyc_output
# ====================================
# 编辑器和 IDE 配置
# ====================================
.vscode/
.trae/
.idea/
*.swp
*.swo
*~
.project
.classpath
.settings/
# ====================================
# 操作系统生成的文件
# ====================================
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
Desktop.ini
# ====================================
# 临时文件
# ====================================
*.tmp
*.temp
*.bak
*.backup
*.swp
*.swo
# ====================================
# 数据库文件
# ====================================
*.sqlite
*.sqlite3
*.db
*.db-journal
# ====================================
# 压缩文件
# ====================================
*.zip
*.tar.gz
*.rar
*.7z
# ====================================
# 文档
# ====================================
docs/
# ====================================
# 开发工具配置
# ====================================
.trae/
.sass-cache/
# ====================================
# 其他
# ====================================
# REPL 历史
.node_repl_history
# npm pack 输出
*.tgz
# Yarn 完整性文件
.yarn-integrity
# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
# Serverless 目录
.serverless/
# FuseBox 缓存
.fusebox/
# DynamoDB 本地文件
.dynamodb/
# TernJS 端口文件
.tern-port
# 存储 VSCode 版本用于测试 VSCode 扩展
.vscode-test