Files
vip-coordinator/.gitignore
kyle 9e9d4245bb chore: Move development files to gitignore (keep locally)
Removed from repository but kept locally for development:
- .github/workflows/ - GitHub Actions (Gitea uses .gitea/workflows/)
- frontend/e2e/ - Playwright E2E tests (development only)

Added to .gitignore:
- .github/ - GitHub-specific CI/CD (not used on Gitea)
- frontend/e2e/ - E2E tests kept locally for testing
- **/playwright-report/ - Test result reports
- **/test-results/ - Test artifacts

These files remain on local machine for development/testing
but are excluded from repository to reduce clutter.

Note: Gitea uses .gitea/workflows/ for CI, not .github/workflows/

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-31 17:50:24 +01:00

100 lines
1.2 KiB
Plaintext

# Environment files with sensitive data
.env.prod
.env.production
backend/.env
# Node modules
node_modules/
backend/node_modules/
frontend/node_modules/
# Build outputs
backend/dist/
frontend/dist/
frontend/build/
# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Coverage directory used by tools like istanbul
coverage/
# nyc test coverage
.nyc_output
# Dependency directories
jspm_packages/
# Optional npm cache directory
.npm
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# IDE files
.vscode/
.idea/
.claude/
*.swp
*.swo
*~
# AI context files
CLAUDE.md
# CI/CD (GitHub-specific, not needed for Gitea)
.github/
# E2E tests (keep locally for development, don't commit)
frontend/e2e/
**/playwright-report/
**/test-results/
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Docker
.dockerignore
# Backup files
*backup*
*.bak
*.tmp
*-old-*
backend-old*
frontend-old*
# Database files
*.sqlite
*.db
# Redis dump
dump.rdb