Commit 14a8a16
feat: LocalSettings module for gitignored local path persistence (#38)
* docs: public-share readiness, dark-mode flythrough, CI improvements
- Fix record_flythrough CLI: --marker_zoom (was --marker_width in docs),
add required csv positional arg to examples, expand all argparse help
strings, replace args bullet list with full argument table in README
- Update flythrough map style to dark basemap with teal→amber column
palette matching the application dark-mode theme; import palette
constants from components/theme.py for consistency
- Add CI badge, Python 3.9+ badge, and GPL badge to README header
- Update CI branch triggers to cover all conventional commit prefixes
(feat/*, fix/*, docs/*, refactor/*, chore/*, ci/*, etc.), add pip
caching, split into named steps, use pip install -e "[dev]"
- Add .pre-commit-config.yaml with ruff and mypy hooks
- Add pyproject.toml [project.dependencies], [project.optional-dependencies.dev],
[tool.pytest.ini_options], and [tool.coverage] sections; pytest now runs
with correct flags from config (no manual flag passing needed)
- Correct coverage threshold to 70% (source-only, tests/ excluded from
measurement; previously 80% was met by inflating numbers with test files)
- Add CHANGELOG.md (Keep a Changelog format)
- Add data/.gitkeep so data/ directory exists after a fresh clone
- Replace assets/example screenshot.png with map and stats variants;
remove dashboard_mockup.png
- Update flythrough.gif to last 10s of tour at 480px/8fps (3.47 MB,
within GitHub's 5 MB inline rendering limit)
- Correct Python minimum version from 3.8 to 3.9 in README and pyproject.toml
- Update CLAUDE.md local gate to use bare pytest (flags now in pyproject.toml)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* feat: LocalSettings module for gitignored local path persistence
Replaces the inline data/config.json logic in components/sidebar.py with
a proper core.local_settings.LocalSettings class. Paths are now stored
in local_settings.json at the project root under a nested plugins structure,
making the file easy to pre-populate manually. Adds local_settings.json.example
as a committed template. Also removes a Django-boilerplate gitignore entry
that was incorrectly shadowing core/local_settings.py.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* chore: ignore editor backup files (*~ and .*.un~)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>1 parent b4f007e commit 14a8a16
7 files changed
Lines changed: 341 additions & 110 deletions
Binary file not shown.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
8 | | - | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
9 | 10 | | |
10 | 11 | | |
11 | 12 | | |
12 | 13 | | |
13 | | - | |
14 | 14 | | |
15 | | - | |
| 15 | + | |
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| 29 | + | |
29 | 30 | | |
30 | 31 | | |
31 | 32 | | |
| |||
37 | 38 | | |
38 | 39 | | |
39 | 40 | | |
40 | | - | |
41 | | - | |
42 | | - | |
43 | 41 | | |
44 | 42 | | |
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 | | - | |
| 43 | + | |
| 44 | + | |
80 | 45 | | |
81 | 46 | | |
82 | 47 | | |
83 | | - | |
| 48 | + | |
84 | 49 | | |
85 | 50 | | |
86 | 51 | | |
87 | 52 | | |
88 | 53 | | |
89 | 54 | | |
90 | 55 | | |
91 | | - | |
92 | | - | |
93 | | - | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
94 | 61 | | |
95 | 62 | | |
96 | 63 | | |
97 | 64 | | |
98 | 65 | | |
99 | 66 | | |
| 67 | + | |
100 | 68 | | |
101 | 69 | | |
102 | 70 | | |
| |||
113 | 81 | | |
114 | 82 | | |
115 | 83 | | |
116 | | - | |
117 | | - | |
| 84 | + | |
| 85 | + | |
118 | 86 | | |
119 | 87 | | |
120 | 88 | | |
121 | 89 | | |
| 90 | + | |
| 91 | + | |
122 | 92 | | |
123 | 93 | | |
124 | 94 | | |
| |||
136 | 106 | | |
137 | 107 | | |
138 | 108 | | |
139 | | - | |
| 109 | + | |
140 | 110 | | |
141 | 111 | | |
142 | 112 | | |
143 | 113 | | |
144 | | - | |
145 | | - | |
| 114 | + | |
146 | 115 | | |
147 | 116 | | |
148 | 117 | | |
| |||
212 | 181 | | |
213 | 182 | | |
214 | 183 | | |
| 184 | + | |
| 185 | + | |
| 186 | + | |
| 187 | + | |
| 188 | + | |
| 189 | + | |
| 190 | + | |
| 191 | + | |
215 | 192 | | |
216 | 193 | | |
217 | 194 | | |
| 195 | + | |
218 | 196 | | |
219 | 197 | | |
220 | 198 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 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 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
57 | 57 | | |
58 | 58 | | |
59 | 59 | | |
60 | | - | |
| 60 | + | |
61 | 61 | | |
62 | 62 | | |
63 | 63 | | |
| |||
0 commit comments