Cleaning up the public-facing repo: - /build.sh, /moduldoku.md, /package-lock.json (root) untracked in prior commit and now blocked via .gitignore - .gitignore itself: dropped GSD baseline noise, deduped overlapping patterns, added the three newly-untracked dev files The schneespur/ subdirectory (Laravel app) is what users consume; root-level dev tooling has no business in the distributed source. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
44 lines
793 B
Text
44 lines
793 B
Text
# ── Dependencies ──
|
|
/node_modules/
|
|
/vendor/
|
|
/schneespur/node_modules/
|
|
/schneespur/vendor/
|
|
|
|
# ── Local env (keep .env.example tracked) ──
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# ── Laravel runtime ──
|
|
/schneespur/storage/logs/*.log
|
|
/schneespur/storage/framework/cache/*
|
|
/schneespur/storage/framework/sessions/*
|
|
/schneespur/storage/framework/views/*
|
|
/schneespur/storage/testing/
|
|
|
|
# ── Build artifacts ──
|
|
/schneespur/public/build/
|
|
/schneespur/public/hot
|
|
/release/
|
|
|
|
# ── Internal dev files (not part of distributable app) ──
|
|
/build.sh
|
|
/moduldoku.md
|
|
/package-lock.json
|
|
|
|
# ── Test caches ──
|
|
.phpunit.result.cache
|
|
.phpunit.cache/
|
|
|
|
# ── IDE / OS ──
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# ── Local tooling ──
|
|
.gsd
|
|
.gsd-id
|
|
.mcp.json
|
|
.bg-shell/
|