-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
36 lines (30 loc) · 783 Bytes
/
Copy path.gitignore
File metadata and controls
36 lines (30 loc) · 783 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
# Local secrets — never commit real API keys
secrets.local.json
.env
.env.*
# Python
__pycache__/
*.py[cod]
*.egg-info/
.venv/
venv/
build/
dist/
.pytest_cache/
.mypy_cache/
.ruff_cache/
# OS / editor
.DS_Store
Thumbs.db
.idea/
.vscode/
# Design scratch (working notes, not shipped)
docs/_design/
# web-parity: fixtures are regenerated fresh every run (see tests/web_parity/gen_fixtures.py),
# never committed — a couple of cases depend on the real system date.
tests/web_parity/fixtures/
# Pages artifact staging: the data JSON gets copied here for local preview / the Pages
# workflow, straight from src/hopandhaul/data/ — never a second committed copy.
src/hopandhaul/ui/data/
# Node, for the web-parity check script only (no runtime/browser dependency)
node_modules/