Files
app/.gitignore
Albert cbb8a8249a fix: Correct .gitignore to match both .env prefix and .env suffix patterns
- .env - matches the base .env file
- .env.* - matches .env.local, .env.production, etc.
- *.env - matches .prod.env, .test.env, etc. (suffix pattern)
- !.example.env - explicitly allow .example.env

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

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

44 lines
491 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
.env.*
*.env
!.example.env
# vercel
.vercel
# typescript
*.tsbuildinfo
next-env.d.ts
# playwright
/test-results/
/playwright-report/
/playwright/.cache/