-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitignore
More file actions
60 lines (51 loc) · 987 Bytes
/
.gitignore
File metadata and controls
60 lines (51 loc) · 987 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
50
51
52
53
54
55
56
57
58
59
60
# macOS
.DS_Store
.AppleDouble
.LSOverride
Thumbs.db
ehthumbs.db
Desktop.ini
# Private / internal — never ship
RECIPIENTS.md
email-to-*.md
GITHUB_DEPLOYMENT_PLAN.md
ONBOARDING_REDESIGN.md
COHORT_*_HANDOUT.md
COHORT_*_HANDOUT.pdf
cohort-bonus/
_archive/
_build/
_build_tools/
# Internal recap notes for maintainers
**/.claude/RECAP.md
**/.claude/settings.local.json
# Release artifacts (use GitHub Releases instead of committing)
*.zip
*.tar.gz
# Marketing site (deployed separately)
site/
# Internal release tooling — kept private to maintainers
# (uncomment if scripts/ should not ship; current default keeps check-release.sh public)
# /scripts/
# Obsidian local workspace (users shouldn't commit their own state)
.obsidian/workspace*
.obsidian/plugins/
.obsidian/themes/
.obsidian/hotkeys.json
.obsidian/app.json
.obsidian/appearance.json
# Editor / IDE
.idea/
.vscode/
*.swp
*.swo
# Python
__pycache__/
*.pyc
.venv/
venv/
# Secrets — defensive
*.env
.env.*
*.key
*.pem