mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 19:59:39 +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>
31 lines
1.2 KiB
Text
31 lines
1.2 KiB
Text
# Memoro Web App - Environment Configuration Template
|
|
# Copy this file to .env and fill in your actual values
|
|
|
|
# Supabase Configuration (required)
|
|
PUBLIC_SUPABASE_URL=your-supabase-url
|
|
PUBLIC_SUPABASE_ANON_KEY=your-supabase-anon-key
|
|
|
|
# Middleware Service URLs (required for transcription)
|
|
PUBLIC_MEMORO_MIDDLEWARE_URL=https://your-memoro-middleware-url
|
|
PUBLIC_MANA_MIDDLEWARE_URL=https://your-mana-middleware-url
|
|
PUBLIC_MIDDLEWARE_APP_ID=your-middleware-app-id
|
|
|
|
# Storage Configuration (required for audio uploads)
|
|
PUBLIC_STORAGE_BUCKET=user-uploads
|
|
|
|
# OAuth Configuration
|
|
# Google Sign-In (required for Google Sign-In)
|
|
PUBLIC_GOOGLE_CLIENT_ID=your-google-oauth-client-id
|
|
|
|
# Apple Sign-In (required for Apple Sign-In)
|
|
# See APPLE_SIGNIN_QUICK_SETUP.md for complete setup instructions
|
|
PUBLIC_APPLE_CLIENT_ID=your-apple-service-id # e.g., com.codify.memoro.web
|
|
PUBLIC_APPLE_REDIRECT_URI=http://localhost:5173/auth/apple-callback # Change to https://your-domain.com/auth/apple-callback in production
|
|
|
|
# PostHog Analytics (optional)
|
|
PUBLIC_POSTHOG_KEY=your-posthog-key
|
|
PUBLIC_POSTHOG_HOST=https://eu.i.posthog.com
|
|
|
|
# Sentry Error Tracking (optional)
|
|
# SENTRY_AUTH_TOKEN=your-sentry-auth-token
|
|
# PUBLIC_SENTRY_DSN=https://YOUR_DSN@sentry.io/PROJECT_ID
|