diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f4cc61..e73c954 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 2026-06-23 — gokapi: index redirect + admin username display +- **gokapi**: seed `RedirectUrl` repointed from Gokapi's GitHub default → `https://${SUBDOMAIN}.${DOMAIN}/admin`. + Gokapi's bare root `/` redirects to `RedirectUrl`; the controller's "Megnyitás" link is always the bare + subdomain root, so it was landing on Gokapi's GitHub instead of the app. Now `/` → `/admin` → login. + Applied to the live demo (config.json edit + restart) and the seed (future deploys). +- **gokapi**: added `app_info.default_creds` ("Felhasználó: admin · jelszó a Beállítások oldalon") so the + app-info page shows the initial admin user like other apps; fixed `first_steps` (no more setup wizard). + ## 2026-06-23 — gokapi reproducible headless setup (fixes public "maintenance mode") - **gokapi**: was stuck in "maintenance mode" on the public URL since first deploy — Gokapi's one-time `/setup` wizard was never completed, and (verified against the docs + the v1.9.6 binary) **no Gokapi diff --git a/REPORT.md b/REPORT.md index 807dc4d..a6a2e4c 100644 --- a/REPORT.md +++ b/REPORT.md @@ -41,7 +41,14 @@ fix is impossible on this version, so this seed mechanism is the equivalent that Final demo: 25 containers, 0 unhealthy; gokapi healthy. Admin credentials stored out-of-band. -## Known minor / optional follow-ups -- Gokapi's `RedirectUrl` (bare `/`) is the upstream default (Gokapi's GitHub); could be set to the - app's own `/login` for nicer customer UX (one-line seed change; future deploys only). +## Follow-ups applied +- Gokapi's `RedirectUrl` repointed from the upstream default (Gokapi's GitHub) → `https://${SUBDOMAIN}.${DOMAIN}/admin`, + so the bare root and the controller's "Megnyitás" link reach the Gokapi login instead of GitHub + (applied to live + seed; verified in-browser: `/` → `/admin` → login). +- `app_info.default_creds` added (shows admin username on the app-info page); `first_steps` updated for + the headless flow. + +## Known minor / optional - Seed is tied to Gokapi v1.9.6's `config.json` schema — re-capture if the image is bumped. +- The controller's "Megnyitás" link is always the bare subdomain root (no per-app path support); apps + whose UI isn't at `/` are handled by pointing their index redirect at the right path (as done here).