# .env # TranscriptIQ — Production environment variables # Copy this file to .env on your DGX server # NEVER commit this file to git # ── Supabase ────────────────────────────────────────────────────────────────── SUPABASE_URL=https://jceyhqalyrcafdzmffqx.supabase.co SUPABASE_ANON_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImpjZXlocWFseXJjYWZkem1mZnF4Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3NzQ4NzQ0NzYsImV4cCI6MjA5MDQ1MDQ3Nn0.Y5GqHlXO1GnGxo5wdZzujdOkT-VnB8tTiKcVywzUZlc # ── Database (Supabase PostgreSQL) ──────────────────────────────────────────── # ACTION REQUIRED: Replace YOUR_SUPABASE_DB_PASSWORD below # Find it in: Supabase Dashboard → Project Settings → Database → Database password DB_PASSWORD=crmp@1234automated DATABASE_URL=postgresql://postgres:crmp@1234automated@db.jceyhqalyrcafdzmffqx.supabase.co:5432/postgres # ── Redis (running on DGX) ──────────────────────────────────────────────────── REDIS_URL=redis://redis:6379/0 # ── Ollama (running natively on DGX — outside Docker) ──────────────────────── OLLAMA_BASE_URL=http://host.docker.internal:11434 OLLAMA_MODEL=llama3.3 # ── JWT Secret Key ──────────────────────────────────────────────────────────── # ACTION REQUIRED: Generate with this command and paste result below: # python3 -c "import secrets; print(secrets.token_hex(32))" # SECRET_KEY=sb_secret_sMuMZo-_je9fXCFS43d_-Q_qGiqcYbK SECRET_KEY=4fcd6682689db77cb3cef2b2a7dab6795994fa601085ddd141eae456becc0877 # ── File storage (on DGX local disk) ───────────────────────────────────────── STORAGE_BASE_PATH=/data/uploads # ── Stripe (leave as is until Sprint 5) ────────────────────────────────────── STRIPE_SECRET_KEY=sk_live_placeholder STRIPE_WEBHOOK_SECRET=whsec_placeholder STRIPE_STARTER_PRICE_ID=price_placeholder STRIPE_PRO_PRICE_ID=price_placeholder # ── CORS (Bluehost frontend) ────────────────────────────────────────────────── CORS_ORIGINS=["https://transcriptiq.instituteofanalytics.com","http://localhost:5173","http://localhost:3000"] # ── App ─────────────────────────────────────────────────────────────────────── DEBUG=false