mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 19:41:09 +02:00
feat(calendar): add runtime STT URL injection for production
- Add PUBLIC_STT_URL to hooks.server.ts runtime injection - Update stt.ts to use runtime-injected URL with fallback - Update .env.development to use production STT URL - Update generate-env.mjs with STT URL mapping Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
3ff8d3833b
commit
7138236046
7 changed files with 78 additions and 6 deletions
|
|
@ -391,6 +391,8 @@ const APP_CONFIGS = [
|
|||
// Cross-app integration: Contacts service for birthdays
|
||||
PUBLIC_CONTACTS_API_URL: (env) => `http://localhost:${env.CONTACTS_BACKEND_PORT || '3015'}`,
|
||||
PUBLIC_CONTACTS_WEB_URL: () => 'http://localhost:5184',
|
||||
// Speech-to-Text Service
|
||||
PUBLIC_STT_URL: (env) => env.STT_URL || 'http://localhost:3020',
|
||||
},
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue