first commit
This commit is contained in:
157
.gitignore
vendored
Normal file
157
.gitignore
vendored
Normal file
@@ -0,0 +1,157 @@
|
||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||
|
||||
# ===================
|
||||
# Dependencies
|
||||
# ===================
|
||||
node_modules/
|
||||
/.pnp
|
||||
.pnp.js
|
||||
.yarn/install-state.gz
|
||||
.yarn/cache
|
||||
.yarn/unplugged
|
||||
.yarn/build-state.yml
|
||||
.yarn/install-state.gz
|
||||
package-lock.json
|
||||
yarn.lock
|
||||
bun.lockb
|
||||
|
||||
# ===================
|
||||
# Next.js
|
||||
# ===================
|
||||
/.next/
|
||||
/out/
|
||||
/build/
|
||||
.next
|
||||
out
|
||||
|
||||
# ===================
|
||||
# Production
|
||||
# ===================
|
||||
/dist/
|
||||
*.min.js
|
||||
*.min.css
|
||||
|
||||
# ===================
|
||||
# Testing
|
||||
# ===================
|
||||
/coverage/
|
||||
.nyc_output
|
||||
*.lcov
|
||||
jest-results.json
|
||||
|
||||
# ===================
|
||||
# TypeScript
|
||||
# ===================
|
||||
*.tsbuildinfo
|
||||
next-env.d.ts
|
||||
tsconfig.tsbuildinfo
|
||||
|
||||
# ===================
|
||||
# Environment Variables
|
||||
# ===================
|
||||
.env
|
||||
.env.*
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
!.env.example
|
||||
|
||||
# ===================
|
||||
# IDE & Editors
|
||||
# ===================
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
*.sublime-workspace
|
||||
*.sublime-project
|
||||
.project
|
||||
.classpath
|
||||
.c9/
|
||||
*.launch
|
||||
.settings/
|
||||
*.code-workspace
|
||||
|
||||
# ===================
|
||||
# OS Generated Files
|
||||
# ===================
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
Desktop.ini
|
||||
|
||||
# ===================
|
||||
# Logs
|
||||
# ===================
|
||||
logs/
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
lerna-debug.log*
|
||||
|
||||
# ===================
|
||||
# Cache
|
||||
# ===================
|
||||
.cache/
|
||||
.parcel-cache/
|
||||
.eslintcache
|
||||
.stylelintcache
|
||||
*.cache
|
||||
.turbo/
|
||||
.tanstack
|
||||
.pnpm-store
|
||||
|
||||
# ===================
|
||||
# Vercel
|
||||
# ===================
|
||||
.vercel
|
||||
|
||||
# ===================
|
||||
# Debug
|
||||
# ===================
|
||||
*.pem
|
||||
*.key
|
||||
*.crt
|
||||
*.p12
|
||||
|
||||
# ===================
|
||||
# Misc
|
||||
# ===================
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
*.orig
|
||||
.temp/
|
||||
.tmp/
|
||||
tmp/
|
||||
temp/
|
||||
|
||||
# ===================
|
||||
# Storybook
|
||||
# ===================
|
||||
storybook-static/
|
||||
|
||||
# ===================
|
||||
# PWA
|
||||
# ===================
|
||||
public/sw.js
|
||||
public/workbox-*.js
|
||||
public/sw.js.map
|
||||
public/workbox-*.js.map
|
||||
|
||||
# ===================
|
||||
# Sentry
|
||||
# ===================
|
||||
.sentryclirc
|
||||
|
||||
# ===================
|
||||
# Docker
|
||||
# ===================
|
||||
docker-compose.override.yml
|
||||
Reference in New Issue
Block a user