- Enhance root .env.example with comprehensive documentation - Add missing variables (JWT_ACCESS_EXPIRES_IN, CORS_ORIGINS, etc.) - Update .prettierignore to exclude test reports and migrations - Improve frontend .gitignore with more patterns (.vitest, .cache) - Add security best practices and setup instructions - Include command examples for generating secure secrets
45 lines
472 B
Plaintext
45 lines
472 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
**/node_modules/
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
out/
|
|
.next/
|
|
.nuxt/
|
|
**/.vitepress/dist/
|
|
|
|
# Generated files
|
|
coverage/
|
|
*.tsbuildinfo
|
|
.vscode-test
|
|
.eslintcache
|
|
.stylelintcache
|
|
|
|
# Test reports
|
|
playwright-report/
|
|
test-results/
|
|
|
|
# Prisma generated
|
|
**/src/generated/prisma/
|
|
**/prisma/migrations/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Lock files
|
|
package-lock.json
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
|
|
# Environment files
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|