ignore
This commit is contained in:
parent
58ceed3701
commit
ce233b2a26
61
.gitignore
vendored
Normal file
61
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
# === Node / Next.js build artifacts ===
|
||||
node_modules/
|
||||
.next/
|
||||
out/
|
||||
build/
|
||||
dist/
|
||||
|
||||
# === PM2 / logs / runtime ===
|
||||
pm2.log
|
||||
pids/
|
||||
logs/
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
.pnpm-debug.log*
|
||||
|
||||
# === Environment files ===
|
||||
.env
|
||||
.env.local
|
||||
.env.development
|
||||
.env.production
|
||||
.env.test
|
||||
.env*.bak
|
||||
|
||||
# === OS / Editor / Misc ===
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
*.swp
|
||||
*.swo
|
||||
*.tmp
|
||||
*.bak
|
||||
*.old
|
||||
|
||||
# === TypeScript / build metadata ===
|
||||
*.tsbuildinfo
|
||||
next-env.d.ts
|
||||
|
||||
# === Prisma / database ===
|
||||
/src/generated/prisma/
|
||||
prisma/migrations/
|
||||
*.db
|
||||
|
||||
# === Vercel / deployment ===
|
||||
.vercel/
|
||||
.vscode/
|
||||
.idea/
|
||||
*.pem
|
||||
*.key
|
||||
|
||||
# === Backup / temp ===
|
||||
backup/
|
||||
tmp/
|
||||
temp/
|
||||
.cache/
|
||||
coverage/
|
||||
|
||||
# === Directus CMS (別サーバ管理のため) ===
|
||||
cms/
|
||||
directus/
|
||||
*.sqlite
|
||||
Loading…
Reference in New Issue
Block a user