- scripts/sync-claude-docs.sh with sync/check/list/help subcommands - scripts/install-claude-sync-hooks.sh for one-time hook setup - .githooks/post-commit auto-syncs on dev-doc changes - .githooks/pre-push warns (non-blocking) on stale sync - .claude-sync.conf lists 11 synced documents - SYNC_MANIFEST.md provides drift-detection anchor for Claude Chat - package.json: npm run sync:docs | sync:check - .gitignore excludes .claude-sync/ output directory Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
60 lines
853 B
Plaintext
60 lines
853 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
vendor/
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
public/build/
|
|
public/hot
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
!.env.example
|
|
|
|
# IDE
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
storage/logs/*
|
|
!storage/logs/.gitkeep
|
|
|
|
# Laravel
|
|
bootstrap/cache/*
|
|
!bootstrap/cache/.gitkeep
|
|
storage/framework/cache/*
|
|
storage/framework/sessions/*
|
|
storage/framework/views/*
|
|
|
|
# Testing
|
|
.phpunit.result.cache
|
|
coverage/
|
|
|
|
# Misc
|
|
*.pem
|
|
.cache/
|
|
|
|
# Design / assets temp files (e.g. Illustrator)
|
|
resources/**/*.tmp
|
|
resources/**/design-files/
|
|
|
|
# VitePress
|
|
docs/.vitepress/dist
|
|
docs/.vitepress/cache
|
|
|
|
# Local deploy wrapper (per-developer SSH alias)
|
|
/run-deploy-from-local.sh
|
|
!/run-deploy-from-local.example.sh
|
|
|
|
# Claude Project Knowledge sync output (regenerated by scripts/sync-claude-docs.sh)
|
|
.claude-sync/
|