fix(dev): point TENANT_REGISTRY_URL at :8090
ci / shared (push) Successful in 6s
ci / test (push) Successful in 29s
ci / e2e (push) Has been skipped
ci / image (push) Has been skipped

Unblock local dev: Keycloak owns :8080, so tenant-registry shifts to :8090. Prod is functionally unchanged.

Refs: M5.1
This commit was merged in pull request #5.
This commit is contained in:
2026-05-19 09:47:38 +00:00
parent e7a1290246
commit 2961f36cca
3 changed files with 21 additions and 2 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ describe("fetchTenantBySlug", () => {
globalThis.fetch = fetchSpy;
await fetchTenantBySlug("acme");
expect(fetchSpy).toHaveBeenCalledWith(
"http://localhost:8080/v1/tenants/by-slug/acme",
"http://localhost:8090/v1/tenants/by-slug/acme",
expect.any(Object),
);
});
+1 -1
View File
@@ -13,7 +13,7 @@ export type Tenant = {
};
function baseUrl(): string {
return process.env.TENANT_REGISTRY_URL ?? "http://localhost:8080";
return process.env.TENANT_REGISTRY_URL ?? "http://localhost:8090";
}
export async function fetchTenantBySlug(slug: string): Promise<Tenant | null> {