Fixes: - Rate limiter now tracks only failed login attempts (not all attempts) - Framework files removed from git tracking (.auto-claude*, .claude_settings.json, verification files) - Added documentation clarifying client-side UX protection vs server-side security Verified: - isRateLimited() only checks, trackFailedAttempt() only called on auth failures - Framework files removed from git ls-files, added to .gitignore - Documentation added explaining reliance on Supabase server-side protection QA Fix Session: 1 Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
95 lines
1.1 KiB
Plaintext
95 lines
1.1 KiB
Plaintext
# Dependencies
|
|
node_modules
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Testing
|
|
coverage
|
|
|
|
# Production
|
|
dist
|
|
dist-ssr
|
|
build
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
*.local
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
|
|
# Editor directories and files
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
!.vscode/settings.json
|
|
.idea
|
|
.DS_Store
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
|
|
# Cache
|
|
.eslintcache
|
|
.cache
|
|
.parcel-cache
|
|
.next
|
|
.nuxt
|
|
.vuepress/dist
|
|
.temp
|
|
.docusaurus
|
|
.serverless/
|
|
.fusebox/
|
|
.dynamodb/
|
|
.tern-port
|
|
.yarn/cache
|
|
.yarn/unplugged
|
|
.yarn/build-state.yml
|
|
.yarn/install-state.gz
|
|
.pnp.*
|
|
|
|
# Supabase
|
|
supabase/.branches/
|
|
supabase/.temp/
|
|
|
|
# PWA files
|
|
**/public/workbox-*.js
|
|
**/public/sw.js
|
|
**/public/fallback-*.js
|
|
|
|
# Misc
|
|
.sass-cache/
|
|
.project
|
|
.classpath
|
|
.settings/
|
|
*.sublime-workspace
|
|
*.sublime-project
|
|
.history/
|
|
|
|
# Source images (originals before optimization)
|
|
source-images/
|
|
|
|
# Auto Claude data directory
|
|
.auto-claude/
|
|
|
|
# AI Agent Framework Files
|
|
.auto-claude-security.json
|
|
.auto-claude-status
|
|
.claude_settings.json
|
|
*-verification.md
|
|
manual-test-verification.md
|