Skip to content

Commit 519210d

Browse files
committed
Create .gitignore
1 parent b3e3fb9 commit 519210d

1 file changed

Lines changed: 48 additions & 0 deletions

File tree

.gitignore

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# ===== Logs =====
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
# ===== Node / Vite =====
11+
node_modules
12+
dist
13+
dist-ssr
14+
*.local
15+
*.tsbuildinfo
16+
.cache/
17+
.parcel-cache/
18+
coverage/
19+
20+
# ===== Rust / Tauri build artifacts =====
21+
src-tauri/target/
22+
src-tauri/Cargo.lock.bak
23+
src-tauri/.cargo-lock
24+
src-tauri/gen/
25+
# Per-platform release bundles — built by the release workflow,
26+
# uploaded to GitHub Releases, never committed.
27+
src-tauri/target/release/bundle/
28+
29+
# ===== Editor / OS junk =====
30+
.vscode/*
31+
!.vscode/extensions.json
32+
!.vscode/settings.json
33+
.idea/
34+
*.suo
35+
*.ntvs*
36+
*.njsproj
37+
*.sln
38+
*.sw?
39+
.DS_Store
40+
Thumbs.db
41+
42+
# ===== Local secrets / env =====
43+
.env
44+
.env.*
45+
!.env.example
46+
47+
# ===== MCP server local install (downloaded by the user post-install) =====
48+
mcp/node_modules/

0 commit comments

Comments
 (0)