mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 21:41:09 +02:00
Move inactive projects out of active workspace: - bauntown (community website) - maerchenzauber (AI story generation) - memoro (voice memo app) - news (news aggregation) - nutriphi (nutrition tracking) - reader (reading app) - uload (URL shortener) - wisekeep (AI wisdom extraction) Update CLAUDE.md documentation: - Add presi to active projects - Document archived projects section - Update workspace configuration Archived apps can be re-activated by moving back to apps/ 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
34 lines
No EOL
983 B
Text
34 lines
No EOL
983 B
Text
# Environment Configuration Example
|
|
# Copy this file to .env and fill in your values
|
|
|
|
# Environment
|
|
NODE_ENV=development
|
|
|
|
# Server Configuration
|
|
PORT=8080
|
|
|
|
# Mana Service Configuration
|
|
MANA_SERVICE_URL=https://mana-core-middleware-111768794939.europe-west3.run.app
|
|
APP_ID=8d2f5ddb-e251-4b3b-8802-84022a7ac77f
|
|
|
|
# Supabase Configuration
|
|
MAERCHENZAUBER_SUPABASE_URL=https://dyywxrmonxoiojsjmymc.supabase.co
|
|
MAERCHENZAUBER_SUPABASE_ANON_KEY=your_anon_key_here
|
|
MAERCHENZAUBER_JWT_SECRET=your_jwt_secret_here
|
|
|
|
# AI Services
|
|
MAERCHENZAUBER_GOOGLE_GENAI_API_KEY=your_MAERCHENZAUBER_GOOGLE_GENAI_API_KEY
|
|
MAERCHENZAUBER_REPLICATE_API_KEY=your_replicate_token
|
|
|
|
# Monitoring & Analytics
|
|
SENTRY_DSN=your_sentry_dsn
|
|
POSTHOG_API_KEY=your_posthog_api_key
|
|
POSTHOG_HOST=https://app.posthog.com
|
|
|
|
# Google Cloud Configuration (for production)
|
|
GCP_PROJECT_ID=your_gcp_project_id
|
|
GOOGLE_APPLICATION_CREDENTIALS=path/to/service-account.json
|
|
|
|
# Feature Flags
|
|
ENABLE_SENTRY_DEV=false
|
|
ENABLE_POSTHOG_DEV=false |