mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 20:01:09 +02:00
fix(web): point credits/sync API client at credits.mana.how
The frontend was calling /api/v1/credits/* and /api/v1/sync/* on auth.mana.how, but those routes live on credits.mana.how (mana-credits service). Add getManaCreditsUrl() helper, inject the URL via hooks.server.ts, allow it in the CSP connect-src, and update both API clients (credits.ts + sync.ts) to use it. Also: pass MANA_CREDITS_URL + MANA_SERVICE_KEY to mana-sync so its billing middleware can reach mana-credits at http://mana-credits:3002. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
c47ce83e83
commit
1c94234996
5 changed files with 26 additions and 5 deletions
|
|
@ -583,6 +583,8 @@ services:
|
|||
DATABASE_URL: postgresql://postgres:${POSTGRES_PASSWORD:-mana123}@postgres:5432/mana_sync?sslmode=disable
|
||||
JWKS_URL: http://mana-auth:3001/api/v1/auth/jwks
|
||||
CORS_ORIGINS: "https://mana.how,https://*.mana.how"
|
||||
MANA_CREDITS_URL: http://mana-credits:3002
|
||||
MANA_SERVICE_KEY: ${MANA_SERVICE_KEY}
|
||||
ports:
|
||||
- "3010:3010"
|
||||
healthcheck:
|
||||
|
|
@ -800,6 +802,8 @@ services:
|
|||
# mana-api.* subdomain is the unambiguous new home.
|
||||
PUBLIC_MANA_API_URL: http://mana-api:3060
|
||||
PUBLIC_MANA_API_URL_CLIENT: https://mana-api.mana.how
|
||||
PUBLIC_MANA_CREDITS_URL: http://mana-credits:3002
|
||||
PUBLIC_MANA_CREDITS_URL_CLIENT: https://credits.mana.how
|
||||
# Per-app HTTP backend URLs (todo-api, calendar-api, contacts-api,
|
||||
# chat-api, storage-api, cards-api, music-api, nutriphi-api,
|
||||
# picture-api, presi-api, zitare-api, clock-api, context-api) and
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue