-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
58 lines (48 loc) · 2.34 KB
/
Copy path.gitignore
File metadata and controls
58 lines (48 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# ── OS / editor ──────────────────────────────────────────────────────────────
.DS_Store
Thumbs.db
*.swp
*.swo
*~
.idea/
.vscode/
*.iml
# ── Go ────────────────────────────────────────────────────────────────────────
server/bin/
server/dist/
server/tmp/
# ── Vite / Node ───────────────────────────────────────────────────────────────
web/node_modules/
web/.next/
web/out/
web/.env.local
web/.env.*.local
# Vite build output (Docker build generates this; keep the .gitkeep placeholder)
web/dist/**
!web/dist/.gitkeep
# TypeScript incremental build cache — regenerated by `tsc -b` (and the
# web-tsc pre-commit hook), so committing it just produces churn.
web/*.tsbuildinfo
# NOTE: web/src/lib/schema.d.ts is intentionally tracked — committing it
# locks the OpenAPI→TS contract so reviewers see schema diffs in PRs, and
# CI verifies it stays in sync via `npm run generate && git diff
# --exit-status`. Do not add it back to this ignore list.
# ── Environment / secrets ─────────────────────────────────────────────────────
.env
.env.local
.env.*.local
deploy/.env
deploy/.env.local
# ── Docker ────────────────────────────────────────────────────────────────────
deploy/postgres_data/
# ── Test / coverage ───────────────────────────────────────────────────────────
coverage/
*.out
*.test.bin
# Playwright
web/e2e/.auth/*.json
web/playwright-report/
web/test-results/
# ── Misc ─────────────────────────────────────────────────────────────────────
*.log
*.tmp