You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
README: top Buy Me a Coffee badge, Helm sample, config accuracy
- Add Buy Me a Coffee badge to the top badge row.
- Add a self-contained Helm (Kubernetes) deployment sample.
- Clarify TC_REDACT_HOME is parsed/exposed but not yet enforced; rest of
the config table verified against the code.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
[](https://buymeacoffee.com/gmaslowski)
6
7
7
8
A small, self-hosted, **read-only dashboard for [TeslaMate](https://github.com/teslamate-org/teslamate)**.
8
9
It connects to your existing TeslaMate Postgres database and renders a clean, map-first view of your
@@ -97,6 +98,105 @@ GRANT SELECT ON ALL TABLES IN SCHEMA public TO teslamate_ro;
97
98
ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT SELECT ON TABLES TO teslamate_ro;
98
99
```
99
100
101
+
### Deploy with Helm (Kubernetes)
102
+
103
+
A minimal self-contained chart. Create a `teslamate-dash/` directory with these four files:
Add an Ingress (or set `service.type: LoadBalancer`) to expose it beyond the cluster. For SSL to the
198
+
database, set `TC_DSN` under `env` instead of the `DATABASE_*` parts.
199
+
100
200
### Not using Docker?
101
201
102
202
Any reachable Postgres works. For a database that lives elsewhere (a remote host, a Kubernetes
@@ -120,7 +220,7 @@ All configuration is via environment variables. `TC_`-prefixed names override th
120
220
| `TC_TITLE` | `TeslaMate Dash` | Header title |
121
221
| `TC_MAP_STYLE_URL` | OpenFreeMap Positron | MapLibre style URL. Point at your own tiles for full privacy. |
122
222
| `TC_DOWNSAMPLE` | `4` | Keep every Nth GPS point when drawing routes (higher is lighter) |
123
-
|`TC_REDACT_HOME`|`true`| Reserved for hiding the home area in shareable views (not yet applied)|
223
+
| `TC_REDACT_HOME` | `true` | Reserved flag for hiding the home area in shareable views. Parsed and exposed on `/api/config`, but not yet enforced, so it currently has no visible effect. |
124
224
| `TC_DEMO` | auto | Force synthetic data on or off |
0 commit comments