-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
93 lines (76 loc) · 4.27 KB
/
Copy path.gitignore
File metadata and controls
93 lines (76 loc) · 4.27 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# ─── Dependencies ────────────────────────────────────────────────────────────
node_modules/
.pnpm-store/
# ─── Next.js ─────────────────────────────────────────────────────────────────
.next/
out/
# ─── Turbo ───────────────────────────────────────────────────────────────────
.turbo/
# ─── Build output ────────────────────────────────────────────────────────────
dist/
build/
# ─── TypeScript ──────────────────────────────────────────────────────────────
*.tsbuildinfo
next-env.d.ts
# ─── Environment ─────────────────────────────────────────────────────────────
.env
.env.local
.env.*.local
# ─── Database (Drizzle / SQLite) ─────────────────────────────────────────────
# SQLite files — never commit local databases
*.db
*.db-shm
*.db-wal
*.sqlite
*.sqlite-shm
*.sqlite-wal
# Drizzle migration snapshots are committed; generated SQL is not
# (remove the next two lines if you commit drizzle output)
# apps/*/drizzle/migrations/*.sql
# apps/*/drizzle/meta/
# ─── PWA / Service Worker (Serwist) ──────────────────────────────────────────
# Generated at build time — never hand-edit these
public/sw.js
public/sw.js.map
public/workbox-*.js
public/workbox-*.js.map
public/serwist-*.js
public/serwist-*.js.map
# ─── Generated icons (pnpm generate-icons output) ────────────────────────────
# Pattern: <app>-icon-<size>.png / <app>-icon-maskable.png
public/*-icon-*.png
# ─── Lighthouse CI ───────────────────────────────────────────────────────────
.lighthouseci/
# ─── Vercel ──────────────────────────────────────────────────────────────────
.vercel/preview-url.txt
error.txt
# ─── Claude Code / AppAtelier Studio ─────────────────────────────────────────
# Local overrides — keep project settings.json committed
.claude/settings.local.json
# Generated specs (studio output) — keep placeholder, ignore content
.claude/specs/*.md
!.claude/specs/.gitkeep
# ─── OS / Editor ─────────────────────────────────────────────────────────────
.DS_Store
Thumbs.db
Desktop.ini
# Windows NUL device — accidentally created when redirecting to /dev/null on Windows
nul
# ─── Certificates / Keys ─────────────────────────────────────────────────────
*.pem
*.key
*.crt
*.p12
# ─── Logs ────────────────────────────────────────────────────────────────────
*.log
npm-debug.log*
pnpm-debug.log*
yarn-debug.log*
yarn-error.log*
# ─── Editor caches ───────────────────────────────────────────────────────────
.vscode/settings.json
.idea/
*.suo
*.ntvs*
*.njsproj
*.sln