c23c373db4
- Created comprehensive .gitignore file covering: • Development documentation (CLAUDE.md) • Log files and temporary files • IDE/editor configurations • OS-generated files • Docker artifacts • Environment files with secrets - Removed CLAUDE.md from repository tracking while preserving local copy - CLAUDE.md remains available for local development but won't be public This keeps development documentation private while maintaining clean public repo. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
34 lines
391 B
Plaintext
34 lines
391 B
Plaintext
# HOPS .gitignore
|
|
|
|
# Claude Code development documentation
|
|
CLAUDE.md
|
|
|
|
# Log files
|
|
*.log
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Environment files (if containing secrets)
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Docker build artifacts
|
|
docker-compose.override.yml |