← back to Exo
chore: gitignore hosts_*.json files (#1343)
d826d309b34f55fa8bdfaa04048041fc23d5790e · 2026-02-02 08:14:11 -0800 · Alex Cheema
## Motivation
`hosts_*.json` files are local host configuration snapshots that
shouldn't be tracked in version control.
## Changes
Added `hosts_*.json` pattern to `.gitignore`.
## Why It Works
The glob pattern `hosts_*.json` matches any file starting with `hosts_`
and ending with `.json` in the repo root.
## Test Plan
### Manual Testing
- Verified that `hosts_*.json` files are ignored by git after this
change.
### Automated Testing
- No automated tests needed for a `.gitignore` change.
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
Files touched
Diff
commit d826d309b34f55fa8bdfaa04048041fc23d5790e
Author: Alex Cheema <41707476+AlexCheema@users.noreply.github.com>
Date: Mon Feb 2 08:14:11 2026 -0800
chore: gitignore hosts_*.json files (#1343)
## Motivation
`hosts_*.json` files are local host configuration snapshots that
shouldn't be tracked in version control.
## Changes
Added `hosts_*.json` pattern to `.gitignore`.
## Why It Works
The glob pattern `hosts_*.json` matches any file starting with `hosts_`
and ending with `.json` in the repo root.
## Test Plan
### Manual Testing
- Verified that `hosts_*.json` files are ignored by git after this
change.
### Automated Testing
- No automated tests needed for a `.gitignore` change.
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
---
.gitignore | 3 +++
1 file changed, 3 insertions(+)
diff --git a/.gitignore b/.gitignore
index a4231085..d0b8299e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -28,3 +28,6 @@ target/
dashboard/build/
dashboard/node_modules/
dashboard/.svelte-kit/
+
+# host config snapshots
+hosts_*.json
← c3537980 feat: add Claude Messages API and OpenAI Responses API suppo
·
back to Exo
·
remove mdns discovered peers from appearing in state (#1312 3e27ead7 →