clawdie-ai/.gitignore
Clawdie AI 8c3323035e build: ignore Astro documentation build artifacts
Add html/clawdie/docs/ to .gitignore since it contains:
- Generated static files from 'npm run build'
- Deployed via 'rsync' to nginx webroot
- Should not be version controlled (rebuilt on each deployment)

Also removed old HTML files that are no longer used:
- index.html (replaced by Astro build)
- install.html, iso-build-*.html, split-brain.html (legacy)

The source markdown (docs/public/) and build scripts remain in version control.
The generated output (html/clawdie/docs/) is deployed separately via rsync.

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>

---
Build: pass | Tests: FAIL — Tests  10 failed | 928 passed (938)
2026-04-12 10:56:55 +00:00

79 lines
1.4 KiB
Text

# Dependencies
node_modules/
.npm-cache/
# Build output
dist/
# Local data & auth
store/
data/
logs/
tmp/
# Groups - only track base structure and specific AGENT.md files
groups/*
!groups/main/
!groups/global/
groups/main/*
groups/global/*
!groups/main/AGENT.md
!groups/global/AGENT.md
# Secrets
*.keys.json
.env
# OS
.DS_Store
# Python
__pycache__/
*.pyc
# IDE
.idea/
.vscode/
# Skills system (local per-installation state)
.nanoclaw/
# Runtime-generated state (changes every 30 min)
/HEARTBEAT.md
# Large binaries and examples — live outside main repo
assets/
examples/
.web-staging/
agents-sdk-docs
# Encrypted storage (secrets, API keys)
encrypted/
# Local operator bootstrap state
infra/ansible/files/controlplane_operator.pub
# Phase 3: Documentation sync (generated HTML, never commit)
# Markdown is source, HTML is built artifact
html/docs-clawdie-si/docs-v*/
html/docs-clawdie-si/docs-current
html/osa/en-v*/
html/osa/de-v*/
html/osa/hr-v*/
html/osa/sr-v*/
html/osa/ba-v*/
html/osa/*-current
# Cron sync artifacts
/tmp/
/tmp/clawdie-docs-sync.lock
/var/log/clawdie-docs-sync.log
# Operator screenshots (served via nginx, not versioned)
/html/clawdie/screenshots/
# Local ISO build artifacts
/html/clawdie/iso/
# Astro documentation build artifacts (generated by npm run build → rsync deploy)
/html/clawdie/docs/
# Local helper scripts
/run-clawdie-hostd.sh
.aider*