fix(infra): make MEILI_URL configurable; rename Discover → Catalogue in nav
Some checks failed
Release / Test backend (push) Failing after 11s
Release / Docker / caddy (push) Failing after 11s
Release / Check ui (push) Failing after 11s
Release / Docker / backend (push) Has been skipped
Release / Docker / runner (push) Has been skipped
Release / Upload source maps (push) Has been skipped
Release / Docker / ui (push) Has been skipped
Release / Gitea Release (push) Has been skipped
CI / Check ui (pull_request) Successful in 49s
CI / Docker / ui (pull_request) Successful in 1m37s
CI / Docker / caddy (pull_request) Successful in 4m4s
CI / Test backend (pull_request) Successful in 4m29s
CI / Docker / runner (pull_request) Failing after 1m27s
CI / Docker / backend (pull_request) Successful in 1m41s
Some checks failed
Release / Test backend (push) Failing after 11s
Release / Docker / caddy (push) Failing after 11s
Release / Check ui (push) Failing after 11s
Release / Docker / backend (push) Has been skipped
Release / Docker / runner (push) Has been skipped
Release / Upload source maps (push) Has been skipped
Release / Docker / ui (push) Has been skipped
Release / Gitea Release (push) Has been skipped
CI / Check ui (pull_request) Successful in 49s
CI / Docker / ui (pull_request) Successful in 1m37s
CI / Docker / caddy (pull_request) Successful in 4m4s
CI / Test backend (pull_request) Successful in 4m29s
CI / Docker / runner (pull_request) Failing after 1m27s
CI / Docker / backend (pull_request) Successful in 1m41s
- docker-compose.yml: MEILI_URL in x-infra-env was hardcoded to the local
meilisearch container, ignoring the Doppler MEILI_URL secret entirely.
Changed to "${MEILI_URL:-http://meilisearch:7700}" so prod reads from
https://search.libnovel.cc while local dev keeps the container default.
- ui/+layout.svelte: rename nav + footer label from "Discover" to "Catalogue"
(desktop nav, mobile menu, footer — all three occurrences).
This commit is contained in:
@@ -15,7 +15,7 @@ x-infra-env: &infra-env
|
|||||||
POCKETBASE_ADMIN_EMAIL: "${POCKETBASE_ADMIN_EMAIL}"
|
POCKETBASE_ADMIN_EMAIL: "${POCKETBASE_ADMIN_EMAIL}"
|
||||||
POCKETBASE_ADMIN_PASSWORD: "${POCKETBASE_ADMIN_PASSWORD}"
|
POCKETBASE_ADMIN_PASSWORD: "${POCKETBASE_ADMIN_PASSWORD}"
|
||||||
# Meilisearch
|
# Meilisearch
|
||||||
MEILI_URL: "http://meilisearch:7700"
|
MEILI_URL: "${MEILI_URL:-http://meilisearch:7700}"
|
||||||
MEILI_API_KEY: "${MEILI_MASTER_KEY}"
|
MEILI_API_KEY: "${MEILI_MASTER_KEY}"
|
||||||
# Valkey
|
# Valkey
|
||||||
VALKEY_ADDR: "valkey:6379"
|
VALKEY_ADDR: "valkey:6379"
|
||||||
|
|||||||
@@ -244,7 +244,7 @@
|
|||||||
href="/catalogue"
|
href="/catalogue"
|
||||||
class="hidden sm:block text-sm transition-colors {page.url.pathname.startsWith('/catalogue') ? 'text-zinc-100 font-medium' : 'text-zinc-400 hover:text-zinc-100'}"
|
class="hidden sm:block text-sm transition-colors {page.url.pathname.startsWith('/catalogue') ? 'text-zinc-100 font-medium' : 'text-zinc-400 hover:text-zinc-100'}"
|
||||||
>
|
>
|
||||||
Discover
|
Catalogue
|
||||||
</a>
|
</a>
|
||||||
<a
|
<a
|
||||||
href="https://feedback.libnovel.cc"
|
href="https://feedback.libnovel.cc"
|
||||||
@@ -332,7 +332,7 @@
|
|||||||
onclick={() => (menuOpen = false)}
|
onclick={() => (menuOpen = false)}
|
||||||
class="px-3 py-2.5 rounded-lg text-sm font-medium transition-colors {page.url.pathname.startsWith('/catalogue') ? 'bg-zinc-800 text-zinc-100' : 'text-zinc-400 hover:bg-zinc-800 hover:text-zinc-100'}"
|
class="px-3 py-2.5 rounded-lg text-sm font-medium transition-colors {page.url.pathname.startsWith('/catalogue') ? 'bg-zinc-800 text-zinc-100' : 'text-zinc-400 hover:bg-zinc-800 hover:text-zinc-100'}"
|
||||||
>
|
>
|
||||||
Discover
|
Catalogue
|
||||||
</a>
|
</a>
|
||||||
<a
|
<a
|
||||||
href="https://feedback.libnovel.cc"
|
href="https://feedback.libnovel.cc"
|
||||||
@@ -400,7 +400,7 @@
|
|||||||
<!-- Top row: site links -->
|
<!-- Top row: site links -->
|
||||||
<nav class="flex flex-wrap items-center justify-center gap-x-5 gap-y-2">
|
<nav class="flex flex-wrap items-center justify-center gap-x-5 gap-y-2">
|
||||||
<a href="/books" class="hover:text-zinc-400 transition-colors">Library</a>
|
<a href="/books" class="hover:text-zinc-400 transition-colors">Library</a>
|
||||||
<a href="/catalogue" class="hover:text-zinc-400 transition-colors">Discover</a>
|
<a href="/catalogue" class="hover:text-zinc-400 transition-colors">Catalogue</a>
|
||||||
<a
|
<a
|
||||||
href="https://feedback.libnovel.cc"
|
href="https://feedback.libnovel.cc"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
|
|||||||
Reference in New Issue
Block a user