-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
110 lines (97 loc) · 3.21 KB
/
Copy path.gitignore
File metadata and controls
110 lines (97 loc) · 3.21 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
# ─────────────────────────────────────────────────────────────────────────────
# Raspy — root ignore. The frontend/ has its own .gitignore for SvelteKit/Bun
# artifacts; this covers the backend (Python/uv), runtime/secret state, and the
# editor/OS/mobile cruft that can appear anywhere in the tree.
# ─────────────────────────────────────────────────────────────────────────────
# ── Secrets & runtime state (NEVER commit) ──────────────────────────────────
# The spine's data dir: SQLite DBs, signing keys, attachment credentials,
# session secrets, audit logs. See plan/30-auth-security.md & plan/50-deployment.md.
data/
backend/data/
*.sqlite
*.sqlite3
*.db
*.db-shm
*.db-wal
secrets/
*.pem
*.key
*.crt
*.p12
config.local.toml
# ── Environment files ───────────────────────────────────────────────────────
.env
.env.*
!.env.example
!.env.test
# ── Python (backend / the spine) ────────────────────────────────────────────
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
build/
dist/
wheels/
.eggs/
*.so
# Virtual environments
.venv/
venv/
env/
ENV/
# uv / packaging
.uv/
# Test / type / lint caches
.pytest_cache/
.ruff_cache/
.mypy_cache/
.coverage
.coverage.*
htmlcov/
.tox/
# ── Node / Bun (belt-and-suspenders; frontend/.gitignore is primary) ────────
node_modules/
.svelte-kit/
bun.lockb
.npm/
.pnpm-store/
# Vite timestamp files
vite.config.*.timestamp-*
# ── Mobile (Capacitor / Android — future, see plan/40-frontend.md) ──────────
# Generated native projects & build outputs; keep source config, drop artifacts.
android/app/build/
android/build/
android/.gradle/
android/local.properties
android/app/release/
*.apk
*.aab
*.keystore
*.jks
ios/App/Pods/
ios/App/build/
.capacitor/
# ── Editors / IDE ───────────────────────────────────────────────────────────
.vscode/
.idea/
*.swp
*.swo
*~
*.code-workspace
# ── Claude Code / agent local state ─────────────────────────────────────────
.claude/
# ── OS cruft ────────────────────────────────────────────────────────────────
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
desktop.ini
# ── Logs & temp ─────────────────────────────────────────────────────────────
*.log
logs/
*.tmp
*.bak
*.pid