fix: clean repo and fix .gitigonre
This commit is contained in:
76
.gitignore
vendored
76
.gitignore
vendored
@@ -1,42 +1,80 @@
|
||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||
|
||||
# dependencies
|
||||
/node_modules
|
||||
/node_modules/
|
||||
/.pnpm-store/
|
||||
/.npm/
|
||||
/.pnp
|
||||
.pnp.*
|
||||
|
||||
# package managers
|
||||
.yarn/*
|
||||
!.yarn/patches
|
||||
!.yarn/plugins
|
||||
!.yarn/releases
|
||||
!.yarn/sdks
|
||||
!.yarn/versions
|
||||
|
||||
# testing
|
||||
/coverage
|
||||
|
||||
# next.js
|
||||
# build output
|
||||
/.next/
|
||||
/out/
|
||||
/build/
|
||||
/dist/
|
||||
|
||||
# production
|
||||
/build
|
||||
# caches
|
||||
/.turbo/
|
||||
/.cache/
|
||||
/.swc/
|
||||
.eslintcache
|
||||
*.tsbuildinfo
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
*.pem
|
||||
# testing
|
||||
/coverage/
|
||||
|
||||
# debug
|
||||
# logs
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
lerna-debug.log*
|
||||
.pnpm-debug.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
# env files (can opt-in for committing if needed)
|
||||
.env*
|
||||
# env files
|
||||
.env
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
.env*.local
|
||||
!.env.example
|
||||
|
||||
# vercel
|
||||
.vercel
|
||||
# deployment / hosting
|
||||
.vercel/
|
||||
|
||||
# typescript
|
||||
*.tsbuildinfo
|
||||
# payload cms
|
||||
/.payload/
|
||||
# /uploads/
|
||||
# /media/
|
||||
# /public/uploads/
|
||||
# /public/media/
|
||||
payload.db*
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
*.db-wal
|
||||
*.db-shm
|
||||
*.sqlite-journal
|
||||
|
||||
# editor / OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# secrets / local certs
|
||||
*.pem
|
||||
*.key
|
||||
*.crt
|
||||
|
||||
# generated by next
|
||||
next-env.d.ts
|
||||
|
||||
Reference in New Issue
Block a user