-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.gitignore
More file actions
49 lines (41 loc) · 802 Bytes
/
Copy path.gitignore
File metadata and controls
49 lines (41 loc) · 802 Bytes
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
# ---- dependencies / build ----
node_modules/
dist/
build/
.turbo/
.vite/
coverage/
# ---- python / uv (uv.lock is committed for reproducible installs) ----
.venv/
__pycache__/
*.pyc
*.egg-info/
.pytest_cache/
.ruff_cache/
.mypy_cache/
# ---- env & secrets ----
.env
.env.local
*.local
# ---- local data / durable stores (never commit) ----
*.sqlite
*.sqlite-shm
*.sqlite-wal
# ---- generated / scratch ----
*.log
_diag*.py
.playwright-mcp/
playwright-report/
test-results/
# ---- editors / OS ----
.vscode/
.idea/
.DS_Store
Thumbs.db
# ---- research clones (kept out of the app repo) ----
pentest-agents-research/
# ---- Claude Code specs, plans, and local tooling (not for the public repo) ----
.claude/
docs/superpowers/
# dev-only generated secrets (never committed)
.redcell-dev-secrets/