-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
80 lines (68 loc) · 1.06 KB
/
Copy path.gitignore
File metadata and controls
80 lines (68 loc) · 1.06 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
# === OS ===
.DS_Store
Thumbs.db
# === Secrets & Environment ===
# Ignore all .env files EXCEPT .env.example which is kept as documentation
.env
.env.local
.env.*.local
.env.bak.*
.env.production
.env.staging
!.env.example
# === Dependencies ===
node_modules/
package-lock.json
yarn.lock
bun.lockb
.pnpm-debug.log*
# === Node.js / Next.js Build Artifacts ===
.next/
out/
dist/
build/
*.tsbuildinfo
# === Rust / Tauri Build Artifacts ===
target/
src-tauri/target/
src-tauri/gen/
# === Logs & Temp ===
*.log
logs/
*.pid
*.seed
*.pid.lock
.cache/
.turbo/
.tmp/
temp/
# === Testing ===
coverage/
*.lcov
# === IDE / Editor ===
.vscode/*
!.vscode/extensions.json
!.vscode/settings.json
.idea/
*.swp
*.swo
*~
# === Deployment / Hosting ===
.vercel/
netlify.toml
# === App-Specific Generated Files ===
apps/desktop/src-tauri/binaries/opencode-*
apps/intro-video/build/
apps/mcp/.dev.vars
apps/mcp/.wrangler/
# === Work-in-Progress / Untracked Apps ===
apps/dashboard/
# === Internal Tooling ===
.opencode-monitor/
.omx/
.sisyphus/
# === Certificates ===
*.pem
*.key
*.crt
*.der