-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
30 lines (22 loc) · 767 Bytes
/
.env.example
File metadata and controls
30 lines (22 loc) · 767 Bytes
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
# Server Configuration
PORT=8080
GIN_MODE=debug
# Authentication
EXTENSION_SECRET_KEY=your-shared-secret-key
# Monarch Money API
MONARCH_API_KEY=your-monarch-api-key
# Error Tracking (Sentry)
# Get your DSN from https://sentry.io/
# Leave empty to disable Sentry
SENTRY_DSN=https://275ad5c45f7eb6454f31ae6a8c325f46@o4509941888122880.ingest.us.sentry.io/4509942073131008
# LLM Options (Phase 2 - choose one)
# Option 1: Ollama (FREE, local)
OLLAMA_ENDPOINT=http://localhost:11434
# Option 2: OpenAI (paid)
# OPENAI_API_KEY=your-openai-api-key
# Option 3: Claude API (paid)
# CLAUDE_API_KEY=your-claude-api-key
# Database (Future)
# DATABASE_URL=postgresql://user:password@localhost/walmart_monarch_sync
# Redis Cache (Future)
# REDIS_URL=redis://localhost:6379