Add .gitignore

This commit is contained in:
2026-06-12 16:04:29 +00:00
parent 0923300846
commit 3045dbc8fb

86
.gitignore vendored Normal file
View File

@@ -0,0 +1,86 @@
# Dependencies
node_modules/
.pnpm-store/
.npm/
.yarn/
.yarn/cache/
.yarn/unplugged/
.yarn/build-state.yml
.yarn/install-state.gz
# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Env / secrets
.env
.env.*
!.env.example
!.env.production.example
# Build output
dist/
build/
out/
.next/
.vite/
coverage/
storybook-static/
# TypeScript
*.tsbuildinfo
# Runtime files
tmp/
temp/
*.pid
*.seed
*.pid.lock
# OS / editor
.DS_Store
Thumbs.db
.vscode/
.idea/
# Tauri
src-tauri/target/
src-tauri/gen/
# Capacitor / mobile
android/.gradle/
android/app/build/
android/build/
ios/DerivedData/
ios/App/build/
*.xcworkspace
*.xcuserstate
*.xcuserdata
# Prisma
prisma/dev.db
prisma/dev.db-journal
prisma/*.db
prisma/*.db-journal
# Redis / local services / docker
docker-data/
postgres-data/
redis-data/
minio-data/
# Testing / cache
.cache/
.eslintcache
jest-cache/
playwright-report/
test-results/
# Misc
*.local
.vercel
.turbo