Add diagram/project DB schema, CRUD API, dashboard pages with grid/card/ empty state, create dialog with type selector, editor placeholder, and 26 schema validation tests. Includes code review fixes: soft-delete filter on GET /:id, error handling, keyboard accessibility, type-safe API response types, and error states on pages. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
73 lines
797 B
Plaintext
73 lines
797 B
Plaintext
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# dependencies
|
|
node_modules
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# testing
|
|
coverage
|
|
coverage.json
|
|
|
|
# next.js
|
|
.next/
|
|
out/
|
|
next-env.d.ts
|
|
|
|
# nitro
|
|
.nitro/
|
|
.output/
|
|
|
|
# expo
|
|
.expo/
|
|
expo-env.d.ts
|
|
apps/mobile/.gitignore
|
|
apps/mobile/ios
|
|
apps/mobile/android
|
|
|
|
# wxt
|
|
.wxt
|
|
web-ext.config.ts
|
|
|
|
# production
|
|
build
|
|
|
|
# misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# local env files
|
|
.env*.local
|
|
|
|
# vercel
|
|
.vercel
|
|
|
|
# typescript
|
|
dist/
|
|
.cache
|
|
|
|
# turbo
|
|
.turbo
|
|
|
|
# content collections
|
|
.content-collections
|
|
|
|
# TTS audio cache
|
|
.claude/audio/
|
|
|
|
# Large voice model files
|
|
.claude/piper-voices/*.onnx
|
|
.mcp.json
|
|
|
|
# Auto Claude data directory
|
|
.auto-claude/
|
|
|
|
# Reference repos (not part of this project)
|
|
_reference/
|