chore: ignore local Hermes runtime files
Keep local Hermes Docker runtime data, NotebookLM auth/cache, and personal compose overrides out of Git and Docker build contexts. This protects tokens, OAuth state, sessions, logs, and caches while preserving the source tree. Constraint: Only .gitignore and .dockerignore are in scope for this commit. Tested: git diff --cached --name-only and git diff --cached --stat Co-authored-by: OmX <omx@oh-my-codex.dev>
This commit is contained in:
@@ -8,6 +8,10 @@ node_modules
|
|||||||
**/node_modules
|
**/node_modules
|
||||||
.venv
|
.venv
|
||||||
**/.venv
|
**/.venv
|
||||||
|
.notebooklm-cli-venv/
|
||||||
|
.notebooklm-playwright/
|
||||||
|
.pip-cache/
|
||||||
|
.uv-cache/
|
||||||
|
|
||||||
# Built artifacts that are regenerated inside the image. Excluded so local
|
# Built artifacts that are regenerated inside the image. Excluded so local
|
||||||
# rebuilds on the developer's machine don't invalidate the npm-install layer
|
# rebuilds on the developer's machine don't invalidate the npm-install layer
|
||||||
@@ -25,6 +29,8 @@ ui-tui/packages/hermes-ink/dist/
|
|||||||
|
|
||||||
# Runtime data (bind-mounted at /opt/data; must not leak into build context)
|
# Runtime data (bind-mounted at /opt/data; must not leak into build context)
|
||||||
data/
|
data/
|
||||||
|
.hermes-docker/
|
||||||
|
.notebooklm-home/
|
||||||
|
|
||||||
# Compose/profile runtime state (bind-mounted; avoid ownership/secret issues)
|
# Compose/profile runtime state (bind-mounted; avoid ownership/secret issues)
|
||||||
hermes-config/
|
hermes-config/
|
||||||
|
|||||||
7
.gitignore
vendored
7
.gitignore
vendored
@@ -12,6 +12,13 @@ __pycache__/
|
|||||||
.env.production.local
|
.env.production.local
|
||||||
.env.development
|
.env.development
|
||||||
.env.test
|
.env.test
|
||||||
|
.hermes-docker/
|
||||||
|
.notebooklm-home/
|
||||||
|
.notebooklm-cli-venv/
|
||||||
|
.notebooklm-playwright/
|
||||||
|
.pip-cache/
|
||||||
|
.uv-cache/
|
||||||
|
compose.hermes.local.yml
|
||||||
export*
|
export*
|
||||||
__pycache__/model_tools.cpython-310.pyc
|
__pycache__/model_tools.cpython-310.pyc
|
||||||
__pycache__/web_tools.cpython-310.pyc
|
__pycache__/web_tools.cpython-310.pyc
|
||||||
|
|||||||
Reference in New Issue
Block a user