Initial commit: Re-connected to Gitea

This commit is contained in:
2026-03-22 04:39:45 +08:00
commit 8e76dd7a7b
103 changed files with 7132 additions and 0 deletions

30
.gitignore vendored Normal file
View File

@@ -0,0 +1,30 @@
# 基础忽略规则
.DS_Store
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
*.swp
*.swo
# 根目录依赖/构建产物
node_modules/
dist/
build/
coverage/
# Monorepo 子包专属忽略(核心)
packages/**/dist/
packages/**/node_modules/
packages/**/build/
packages/**/coverage/
packages/**/.env*
packages/**/npm-debug.log*
packages/**/yarn-debug.log*
packages/**/yarn-error.log*
packages/**/pnpm-debug.log*