-
-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy path.gitignore
More file actions
125 lines (114 loc) · 4.27 KB
/
Copy path.gitignore
File metadata and controls
125 lines (114 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# ═══════════════════════════════════════════════════════════════════════════════
# XActions
#
# This file used to be a copy of LobeHub's, carrying Umi, dumi, Serwist and
# `packages/lobe-ui` rules that match nothing here, while missing the one class of
# file this project must never commit: a saved X session. Rules are grouped by why
# they exist, so the next person can tell which ones are load-bearing.
# ═══════════════════════════════════════════════════════════════════════════════
# ─── Credentials and sessions ──────────────────────────────────────────────────
# XActions logs into X with real cookies. Anything matched here is a live login:
# whoever reads it can post as the account. These come first because they are the
# rules with a blast radius.
.xactions/
cookies.json
*.cookies.json
cookies.txt
storage-state.json
session.json
*.session.json
query-ids.json
mcp-drafts.json
.x402-wallets.json
vertex-ai-key.json
*.pem
# ─── Environment ───────────────────────────────────────────────────────────────
.env
.env.local
.env*.local
.env.development
.env.production
.env.sentry-build-plugin
.dev.vars
# ─── Dependencies ──────────────────────────────────────────────────────────────
node_modules/
bun.lockb
.pnpm-store/
venv/
.venv/
__pycache__/
*.py[cod]
.pytest_cache/
# ─── Build output ──────────────────────────────────────────────────────────────
dist/
dist-cloudflare/
build/
es/
/lib/
.next/
pages-out/
*.tsbuildinfo
next-env.d.ts
# ─── Test and lint caches ──────────────────────────────────────────────────────
coverage/
.coverage/
.nyc_output/
.eslintcache
.stylelintcache
test-output/
e2e/reports/
audit-report.json
# ─── Local data ────────────────────────────────────────────────────────────────
# data/ is tracked for its .gitkeep; its contents are runtime scrape output.
data/*
!data/.gitkeep
*.db
*.sqlite
*.sqlite3
dump.rdb
logs/
*.log
# ─── Deploy tooling ────────────────────────────────────────────────────────────
.vercel
.wrangler/
# ─── Editor and OS ─────────────────────────────────────────────────────────────
.DS_Store
Thumbs.db
ehthumbs.db
Desktop.ini
*~
*.swp
*.swo
.fuse_hidden*
.directory
.Trash-*
.nfs*
.gvfs-fuse-daemon-*
.idea/
*.sublime-*
.history/
.windsurfrules
*.code-workspace
.vscode/sessions.json
# Stray editor and agent backups (never commit or publish)
*.backup
*.bak
*.orig
*.rej
# ─── Temporary ─────────────────────────────────────────────────────────────────
.temp/
temp/
tmp/
*.tmp
*.temp
*.cache
.cache/
# ─── AI coding tools ───────────────────────────────────────────────────────────
# Local agent state only. AGENTS.md, CLAUDE.md and GEMINI.md are tracked on
# purpose: they are how a coding agent learns this repository, so they ship with it.
.local/
.claude/
.serena/
.mcp.json
CLAUDE.local.md
.husky/prepare-commit-msg