-
Couldn't load subscription status.
- Fork 182
Add comprehensive .dockerignore file #886
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
pavangudiwada
wants to merge
8
commits into
master
Choose a base branch
from
add-dockerignore
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+245
−1
Open
Changes from 3 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
2fddd5d
Add comprehensive .dockerignore file
pavangudiwada 1064b71
Enhance .dockerignore with missing patterns from .gitignore
pavangudiwada 01d72fc
Adding some gitignore stuff
pavangudiwada 345d405
Update .dockerignore
pavangudiwada 07b7699
Update .dockerignore
pavangudiwada 8b0767b
Removed poetry.lock as its needed for builds
pavangudiwada e6e1e8b
Adding some cache files
pavangudiwada f9caf70
Update .gitignore
pavangudiwada File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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* | ||
pavangudiwada marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| .secrets | ||
| config.yaml | ||
| ~/.holmes/config.yaml | ||
|
|
||
pavangudiwada marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| # 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 | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.