Files
storkit/.gitignore
Dave ebbbfed1d9 Add 10-minute timeout to test commands and disable e2e in merge pipeline
Test commands in run_project_tests now use wait-timeout to enforce a
600-second ceiling, preventing hung processes (e.g. Playwright with no
server) from blocking the merge pipeline indefinitely. Also disables
e2e tests in script/test until the merge workspace can run them safely.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-17 11:32:44 +00:00

59 lines
898 B
Plaintext

# Claude Code
.claude/settings.local.json
# Local environment (secrets)
.env
# App specific
store.json
.story_kit_port
# Bot config (contains credentials)
.story_kit/bot.toml
# Matrix SDK state store
.story_kit/matrix_store/
.story_kit/matrix_device_id
# Agent worktrees and merge workspace (managed by the server, not tracked in git)
.story_kit/worktrees/
.story_kit/merge_workspace/
# Coverage reports (generated by cargo-llvm-cov, not tracked in git)
.story_kit/coverage/
# 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