From 48eca672a987ea97ae0c48dc1b0a6a5dc44fc586 Mon Sep 17 00:00:00 2001 From: Celes Renata Date: Wed, 29 Apr 2026 17:50:59 +0000 Subject: [PATCH] docs: add TZ environment variable to Helm and Docker docs Document the TZ config option in both docker-deployment.md and helm-reference.md. Default is America/Los_Angeles. Frontend uses the browser's local timezone for display. --- docs/docker-deployment.md | 1 + docs/helm-reference.md | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/docker-deployment.md b/docs/docker-deployment.md index f01ace6..748c2d5 100644 --- a/docs/docker-deployment.md +++ b/docs/docker-deployment.md @@ -205,6 +205,7 @@ All application services support additional environment variables loaded via `se | `LOG_LEVEL` | `INFO` | Logging level | | `JSON_LOGS` | `true` | Enable structured JSON logging | | `DEPLOY_STAGE` | (empty) | Deployment stage prefix for bucket names | +| `TZ` | `America/Los_Angeles` | Display timezone for timestamps (set on all containers) | See `services/shared/config.py` for the complete list of all supported environment variables with their defaults. diff --git a/docs/helm-reference.md b/docs/helm-reference.md index 2a1edd6..3c23865 100644 --- a/docs/helm-reference.md +++ b/docs/helm-reference.md @@ -376,6 +376,7 @@ All keys under `config` are rendered into a Kubernetes ConfigMap named `stonks-c | `config.LOG_LEVEL` | string | `INFO` | Python logging level. Options: `DEBUG`, `INFO`, `WARNING`, `ERROR`. | | `config.JSON_LOGS` | string | `true` | Emit structured JSON logs when `true`. | | `config.DEPLOY_STAGE` | string | `""` (empty) | Deployment stage identifier. Used to isolate Redis keys and MinIO buckets per stage (e.g., `beta`, `paper`). | +| `config.TZ` | string | `America/Los_Angeles` | Container timezone. Affects log timestamps and any time-aware formatting. The frontend uses the browser's local timezone for display. | ### Alerting