-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
38 lines (30 loc) · 1.35 KB
/
.env.example
File metadata and controls
38 lines (30 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Redis URL for storing and sharing bills
# Required for sharing functionality
REDIS_URL=redis://localhost:6379
# Admin password for accessing the admin dashboard
# Set a strong password to protect your admin area
ADMIN_PASSWORD=your_secure_password_here
# Optional: PostHog configuration for analytics
# NEXT_PUBLIC_POSTHOG_KEY=
# NEXT_PUBLIC_POSTHOG_HOST=
# ============================================
# Receipt Scanning Configuration (Optional)
# ============================================
# Receipt scanning will use mock data if not configured
# Choose one provider and set its API key
# OCR Provider - Choose one: "google" (default), "openai", or "anthropic"
# OCR_PROVIDER=google
# Google Gemini API Key (if using Google as provider)
# Get your key from: https://aistudio.google.com/app/apikey
# GOOGLE_GENERATIVE_AI_API_KEY=your_gemini_api_key_here
# OpenAI API Key (if using OpenAI as provider)
# Get your key from: https://platform.openai.com/api-keys
# OPENAI_API_KEY=your_openai_api_key_here
# Anthropic API Key (if using Anthropic as provider)
# Get your key from: https://console.anthropic.com/settings/keys
# ANTHROPIC_API_KEY=your_anthropic_api_key_here
# Optional: Override the default model for your chosen provider
# Google default: gemini-2.0-flash
# OpenAI default: gpt-4o
# Anthropic default: claude-sonnet-4-20250514
# OCR_MODEL=gemini-2.0-flash