mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-20 10:53:40 +02:00
Adds the original NestJS backends (backend, audio-backend), Expo mobile app, and Astro landing page as-is from the standalone memoro repo. These are not yet migrated to monorepo standards (migration tracked in memory/CLAUDE.md). Also adds eslint.config.mjs ignore for apps/*/apps/audio-backend/** and .prettierignore entries for legacy memoro dirs. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
25 lines
No EOL
802 B
Text
25 lines
No EOL
802 B
Text
# Server Configuration
|
|
PORT=3001
|
|
NODE_ENV=development
|
|
|
|
# Service URLs
|
|
MANA_SERVICE_URL=https://mana-core-middleware-111768794939.europe-west3.run.app
|
|
AUDIO_MICROSERVICE_URL=https://audio-microservice-111768794939.europe-west3.run.app
|
|
|
|
# App Configuration
|
|
MEMORO_APP_ID=973da0c1-b479-4dac-a1b0-ed09c72caca8
|
|
|
|
# JWT Configuration for Service Role Authentication
|
|
MANA_JWT_SECRET=your_mana_jwt_secret
|
|
|
|
# Mana Core Service Key (for service-to-service credit operations)
|
|
MANA_SUPABASE_SECRET_KEY=your_mana_service_role_key
|
|
|
|
# Memoro Supabase Configuration
|
|
MEMORO_SUPABASE_URL=https://your-memoro-project.supabase.co
|
|
MEMORO_SUPABASE_ANON_KEY=your-memoro-anon-key
|
|
MEMORO_SUPABASE_SERVICE_KEY=your-memoro-service-key
|
|
|
|
# Test Configuration
|
|
TEST_EMAIL=your_test_email@example.com
|
|
TEST_PASSWORD=your_test_password |