Add .gitignore and remove CLAUDE.md from repository
- 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>
This commit is contained in:
+34
@@ -0,0 +1,34 @@
|
||||
# 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
|
||||
Reference in New Issue
Block a user