- Merge backend, web, app, planning histories (118 commits preserved) - Replace Woodpecker CI with .gitlab-ci.yml (path-based triggering) - Switch mistral-go-sdk from somegit.dev to github.com/VikingOwl91/mistral-go-sdk v1.3.0 - Consolidate .pre-commit-config.yaml and .gitignore at repo root - Remove per-service .woodpecker.yml files
45 lines
946 B
Plaintext
45 lines
946 B
Plaintext
# ── Backend ──────────────────────────────────
|
|
/backend/api
|
|
/backend/seed
|
|
*.test
|
|
*.out
|
|
coverage.html
|
|
go.work
|
|
go.work.sum
|
|
vendor/
|
|
|
|
# ── Web ──────────────────────────────────────
|
|
/web/node_modules/
|
|
/web/.svelte-kit/
|
|
/web/build/
|
|
/web/.output/
|
|
/web/vite.config.js.timestamp-*
|
|
/web/vite.config.ts.timestamp-*
|
|
|
|
# ── App ──────────────────────────────────────
|
|
/app/.dart_tool/
|
|
/app/build/
|
|
/app/.flutter-plugins
|
|
/app/.flutter-plugins-dependencies
|
|
|
|
# ── Shared ───────────────────────────────────
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
!.env.example
|
|
!.env.test
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
/tmp/
|
|
/dist/
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|