-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
107 lines (95 loc) · 2.37 KB
/
Copy path.gitignore
File metadata and controls
107 lines (95 loc) · 2.37 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
# ---------------------------------------------------------------------------
# Secrets
# ---------------------------------------------------------------------------
.env
.env.local
.env.*.local
*.pem
*.key
# .env.example is intentionally NOT ignored - it documents the required keys
# without containing any values.
# Source artwork for the logo. The site serves the cropped copies in ui/icons/,
# which must stay tracked -- hence the leading slash, which limits this to the
# root folder.
/icons/
# Local verification harnesses (Playwright / OpenTelemetry). Useful to keep,
# but they are developer scratch tooling, not part of the deployment.
tools/
# ---------------------------------------------------------------------------
# Internal docs and notes (not for GitHub)
# ---------------------------------------------------------------------------
JOURNAL.md
# Source spreadsheet. The data lives in Supabase; nothing in the app reads this.
*.xlsx
02_claude_code_fh6_datastore_chatbot.md
03_claude_integration_fh6.md
db/DB_CHANGES.md
# Every README, at any depth.
README.md
**/README.md
readme.md
**/readme.md
README.*
**/README.*
# Except the root README, which is the project's public description.
!/README.md
# ---------------------------------------------------------------------------
# Python
# ---------------------------------------------------------------------------
.venv/
venv/
env/
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
# Build artifacts (uv_build / setuptools)
build/
dist/
*.egg-info/
*.egg
wheels/
# Test and lint caches
.pytest_cache/
.ruff_cache/
.mypy_cache/
.tox/
.nox/
.coverage
.coverage.*
htmlcov/
coverage.xml
.hypothesis/
# ---------------------------------------------------------------------------
# Vercel
# ---------------------------------------------------------------------------
.vercel/
.vercel
# Node, in case the frontend grows a build step
node_modules/
.next/
.turbo/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# ---------------------------------------------------------------------------
# Editors and OS
# ---------------------------------------------------------------------------
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
desktop.ini
# ---------------------------------------------------------------------------
# Misc
# ---------------------------------------------------------------------------
*.log
*.bak
*.tmp
tmp/
scratch/