| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- # Dependencies
- node_modules
- .pnp
- .pnp.*
- .yarn/*
- !.yarn/patches
- !.yarn/plugins
- !.yarn/releases
- !.yarn/versions
- # Testing
- coverage
- # Next.js
- .next
- out
- # Production build artifacts (rebuilt in container)
- build
- # Misc
- .DS_Store
- *.pem
- # Debug logs
- npm-debug.log*
- yarn-debug.log*
- yarn-error.log*
- .pnpm-debug.log*
- # Local env files (never bake secrets into the image)
- .env
- .env.*
- !.env.example
- # Vercel
- .vercel
- # TypeScript
- *.tsbuildinfo
- next-env.d.ts
- # Docker (avoid copying Docker-related files into context)
- Dockerfile
- .dockerignore
- docker-compose*.yml
- docker-compose*.yaml
- # Git
- .git
- .gitignore
- .gitattributes
- # Documentation (optional to exclude; remove these lines if you want docs in the image)
- docs
- README.md
- AGENTS.md
- CLAUDE.md
- # IDE / editor
- .vscode
- .idea
- *.swp
- *.swo
- # OS
- Thumbs.db
|