# Copy to .env.local and fill in. .env.local is gitignored. # --- Database (matches docker-compose.dev.yml) --- POSTGRES_USER=cliniq POSTGRES_PASSWORD=cliniq POSTGRES_DB=cliniq POSTGRES_HOST=localhost POSTGRES_PORT=5432 DATABASE_URL=postgresql+psycopg://cliniq:cliniq@localhost:5432/cliniq # --- Redis / Celery --- REDIS_URL=redis://localhost:6379/0 CELERY_BROKER_URL=redis://localhost:6379/1 CELERY_RESULT_BACKEND=redis://localhost:6379/2 # --- LLM providers (set whichever you have) --- GROQ_API_KEY= OPENROUTER_API_KEY= OLLAMA_BASE_URL=http://localhost:11434 # --- Whisper / transcription (Person A): Groq-hosted Whisper --- WHISPER_MODEL=whisper-large-v3-turbo # --- Telegram notifications (Person A) --- TELEGRAM_BOT_TOKEN= TELEGRAM_CHAT_ID= # --- Calendar backend (Person A): local (Postgres) | google --- CALENDAR_BACKEND=local # --- Observability --- LANGFUSE_HOST=http://localhost:3001 LANGFUSE_PUBLIC_KEY= LANGFUSE_SECRET_KEY= # --- Integrations (Person B fills in) --- TWILIO_ACCOUNT_SID= TWILIO_AUTH_TOKEN= TWILIO_WHATSAPP_FROM=whatsapp:+14155238886 GOOGLE_CALENDAR_MCP_URL=https://calendarmcp.googleapis.com GMAIL_MCP_URL=https://gmailmcp.googleapis.com GOOGLE_DRIVE_MCP_URL=https://drivemcp.googleapis.com # --- App --- CLINIQ_ENV=dev CLINIQ_API_KEY=dev-local-key HF_SPACE_BACKEND_URL=http://localhost:8000 TELEGRAM_BOT_TOKEN=.. TELEGRAM_CHAT_ID=..