The server writes .mcp.json with its current port on startup and during worktree creation. Tracking it in git causes QA gate failures when the worktree copy diverges from master (e.g. different port). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
46 lines
624 B
Plaintext
46 lines
624 B
Plaintext
# Claude Code
|
|
.claude/settings.local.json
|
|
.mcp.json
|
|
|
|
# Local environment (secrets)
|
|
.env
|
|
|
|
# App specific (root-level; story-kit subdirectory patterns live in .story_kit/.gitignore)
|
|
store.json
|
|
.story_kit_port
|
|
|
|
# Rust stuff
|
|
target
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
|
|
node_modules
|
|
frontend/node_modules
|
|
frontend/dist
|
|
frontend/dist-ssr
|
|
frontend/test-results
|
|
frontend/*.local
|
|
server/target
|
|
|
|
# Editor directories and files
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
.idea
|
|
.DS_Store
|
|
|
|
# Vite/Vitest cache
|
|
.vite/
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
/test-results/.last-run.json
|