vivekananda0010/Progeni_Atlus
0
1# Supabase (Project Settings → API)2NEXT_PUBLIC_SUPABASE_URL=https://xxxx.supabase.co3NEXT_PUBLIC_SUPABASE_ANON_KEY=your-anon-key4# Server-only — never expose to the browser. Used by API routes to write5# shared content (questions/solutions) that bypasses RLS.6SUPABASE_SERVICE_ROLE_KEY=your-service-role-key7 8# LLM (Anthropic API key — console.anthropic.com)9ANTHROPIC_API_KEY=sk-ant-xxxx10# Optional override, defaults to claude-sonnet-511LLM_MODEL=claude-sonnet-512 13# Code execution (optional — defaults to the free public Piston instance)14# Self-host for production traffic: https://github.com/engineer-man/piston15PISTON_URL=https://emkc.org/api/v2/piston16 