mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 21:41:09 +02:00
fix(manadeck): resolve backend startup and auth configuration issues
- Add missing env vars to generate-env script (DATABASE_URL, MANA_SERVICE_URL, APP_ID) - Fix auth endpoints to use correct mana-core-auth paths (/api/v1/auth/login) - Fix api.controller.ts to use getBalance() and completedAt field names - Add SSR/optimizeDeps config for shared packages in vite.config.ts - Remove outdated tailwind.config.js (conflicts with Tailwind CSS 4) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
e3eae2cb2c
commit
f1e27f3beb
6 changed files with 39 additions and 27 deletions
|
|
@ -198,8 +198,10 @@ const APP_CONFIGS = [
|
|||
vars: {
|
||||
NODE_ENV: () => 'development',
|
||||
PORT: (env) => env.MANADECK_BACKEND_PORT || '3004',
|
||||
SUPABASE_URL: (env) => env.MANADECK_SUPABASE_URL,
|
||||
SUPABASE_ANON_KEY: (env) => env.MANADECK_SUPABASE_ANON_KEY,
|
||||
DATABASE_URL: (env) => env.MANADECK_DATABASE_URL,
|
||||
MANA_SERVICE_URL: (env) => env.MANA_CORE_AUTH_URL,
|
||||
APP_ID: (env) => env.MANADECK_APP_ID,
|
||||
GOOGLE_GENAI_API_KEY: (env) => env.GOOGLE_GENAI_API_KEY,
|
||||
},
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue