Initial commit
This commit is contained in:
75
.gitignore
vendored
Normal file
75
.gitignore
vendored
Normal file
@@ -0,0 +1,75 @@
|
||||
# Environment files (敏感配置)
|
||||
.env
|
||||
.env.local
|
||||
.env.production
|
||||
!.env.example
|
||||
|
||||
# Dependencies
|
||||
node_modules/
|
||||
.pnpm-store/
|
||||
**/node_modules/
|
||||
|
||||
# Build outputs
|
||||
docs/.vitepress/dist/
|
||||
docs/.vitepress/cache/
|
||||
**/.vitepress/dist/
|
||||
**/.vitepress/cache/
|
||||
|
||||
# PDF exports (导出的 PDF 文件不应提交)
|
||||
*.pdf
|
||||
!*.example.pdf
|
||||
|
||||
# Docker
|
||||
docker/tmp/
|
||||
docker/*.log
|
||||
**/*.log
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
lerna-debug.log*
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
ehthumbs.db
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
.fuse_hidden*
|
||||
.Directory
|
||||
Desktop.ini
|
||||
|
||||
# IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
*.sublime-workspace
|
||||
*.sublime-project
|
||||
|
||||
# Temporary files
|
||||
*.tmp
|
||||
*.temp
|
||||
.cache/
|
||||
.tmp/
|
||||
temp/
|
||||
|
||||
# Test coverage
|
||||
coverage/
|
||||
.nyc_output/
|
||||
|
||||
# Build artifacts
|
||||
dist/
|
||||
build/
|
||||
*.tgz
|
||||
|
||||
# Misc
|
||||
*.local
|
||||
*.log
|
||||
Reference in New Issue
Block a user