Some checks failed
CI/CD Pipeline / Backend Tests (push) Has been cancelled
CI/CD Pipeline / Frontend Tests (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (push) Has been cancelled
CI/CD Pipeline / Security Scan (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
Removed files only needed for Claude AI development workflow: - CLAUDE.md - AI context documentation (not needed to run app) - .claude/settings.local.json - Claude Code CLI settings Added to .gitignore: - .claude/ - Claude Code CLI configuration directory - CLAUDE.md - AI context file These files are kept locally for development but excluded from repository. Application does not require these files to function. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
92 lines
1.0 KiB
Plaintext
92 lines
1.0 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
|
|
|
|
# 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 |