Files
app/.gitignore
Albert 6f657df728 chore: Simplify .gitignore to exclude all .env files except .example.env
- Use .env* pattern to catch all environment files
- Explicitly allow .example.env with negation pattern
- Removes need to list individual .env variants

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-09 15:10:31 +00:00

42 lines
479 B
Plaintext

# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# next.js
/.next/
/out/
# production
/build
# misc
.DS_Store
*.pem
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# local env files (exclude all except .example.env)
.env*
!.example.env
# vercel
.vercel
# typescript
*.tsbuildinfo
next-env.d.ts
# playwright
/test-results/
/playwright-report/
/playwright/.cache/