-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.gitignore
More file actions
89 lines (79 loc) · 3 KB
/
Copy path.gitignore
File metadata and controls
89 lines (79 loc) · 3 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
# ============================================================
# SECRETS — never commit. Contains the Vertex service-account
# private key, OpenAI / ElevenLabs keys, DB strings, tokens.
# ============================================================
.env
.env.*
*.env
**/.env
**/.env.*
# ...but keep the committed template (no real secrets in it):
!.env.example
# ============================================================
# SENSITIVE INTERNAL MATERIAL
# Classified "Sensitive — Internal Use Only" with real
# vulnerability and PII figures. Excluded so it cannot be
# pushed to GitHub. If this repository is PRIVATE and you
# intend to track it, delete the line below.
# ============================================================
technical-reference/sensitive-facts.md
# ------------------------------------------------------------
# INTERNAL SOURCE / WORKING MATERIAL — not committed.
# Authoring source, not the published site (includes a
# third-party doc, an audio recording, and internal
# transcripts). Excluded per author's instruction.
# ------------------------------------------------------------
technical-reference/
video-transcripts/
style-guide/janak-transcripts/
original-transcripts/
hiking/
_archive/
whitepaper-raw-materials.md
# Claude Code per-directory runtime state (locks, local settings) at the repo root.
/.claude/
# ============================================================
# Dependencies
# ============================================================
node_modules/
**/node_modules/
# ============================================================
# Local backups & scratch (not part of the site)
# ============================================================
.backups/
**/.backups/
scratch/
**/scratch/
# ============================================================
# Deploy-swap transient + logs
# ============================================================
app/site/index.dev.html.bak
**/index.dev.html.bak
*.log
# ============================================================
# OS / editor cruft
# ============================================================
.DS_Store
Thumbs.db
desktop.ini
.idea/
.vscode/
*.swp
.shots/
app/site/public/images/sims/**/*.src.png
threejs-skills/
french-translation/
# ============================================================
# P21 sim: local build scratch + screenshots (never publish third-party / shots)
# ============================================================
app/site/.shots-*/
app/site/data/sims/_research/
# ============================================================
# Image regeneration cache — the .source.png saved next to each
# generated .jpg is used only to condition FR image regeneration.
# It is never served (the site renders the .jpg). Kept locally so
# regeneration still works; not pushed (it was ~570 MB of the repo).
# ============================================================
app/site/public/images/**/*.source.png
# Nested companion code repos (own .git, published separately to GovAlta/*). Never part of the site snapshot.
repos/