Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
189 changes: 189 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,189 @@
# Git
.git
.gitignore

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Virtual environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Poetry
poetry.lock

# Testing
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Documentation
docs/
docs/_build/
.sphinx-build/
*.md
README*

# IDEs
.vscode/
.idea/
*.swp
*.swo
*~

# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Logs
*.log
logs/

# Temporary files
tmp/
temp/

# Configuration & Secrets
.env*
.env.local
.env.development.local
.env.test.local
.env.production.local
*.key
*.pem
*.crt
secrets/
credentials/

# API Keys & Claude Instructions
CLAUDE.md
CLAUDE.local.md
CLAUDE*.md
*_API_KEY*
*api_key*
*_TOKEN*
*token*
.secrets
config.yaml
~/.holmes/config.yaml

# Common mistakes
.vscode/settings.json
.idea/workspace.xml
*.backup
*.bak
*.orig
*.tmp
*~
.DS_Store

# Node modules (if any)
node_modules/

# Holmes specific
~/.holmes/
.holmes/

# Additional items from .gitignore
playwright.png
.deepeval*
pyrightconfig.json
evals_report.txt
evals_report.md
config_toolsets.yaml
**/.claude/settings.local.json
.claude-trace/

# Testing coverage
htmlcov/
.nox/
*.py,cover
cover/

# Additional Python
share/python-wheels/
*.manifest
*.spec
pip-log.txt
pip-delete-this-directory.txt

# Framework specific
*.mo
*.pot
local_settings.py
db.sqlite3
db.sqlite3-journal
instance/
.webassets-cache
.scrapy

# Build tools
.pybuilder/
target/
__pypackages__/

# Task scheduling
celerybeat-schedule
celerybeat.pid

# Sage
*.sage.py

# Project settings
.spyderproject
.spyproject
.ropeproject

# MkDocs
/site

# Type checkers
.mypy_cache/
.dmypy.json
dmypy.json
.pyre/
.pytype/

# Debug
cython_debug/

# Jupyter
.ipynb_checkpoints
profile_default/
ipython_config.py
44 changes: 43 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
.DS_STORE
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
tmp/
temp/
config.yaml

# Byte-compiled / optimized / DLL files
Expand Down Expand Up @@ -169,3 +176,38 @@ config_toolsets.yaml

**/.claude/settings.local.json
.claude-trace/

# API Keys & Secrets
*_API_KEY*
*api_key*
*_TOKEN*
*token*
*.key
*.pem
*.crt
.secrets
secrets/
credentials/

# Claude Instructions
CLAUDE.local.md

# Holmes specific
~/.holmes/
.holmes/

# Common temporary/backup files
*.backup
*.bak
*.orig
*.tmp
*~
*.swp
*.swo

# Additional IDE files
.vscode/settings.json
.idea/workspace.xml

# Environment files
.env*
Loading