-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathenv.example
More file actions
57 lines (43 loc) · 2.31 KB
/
env.example
File metadata and controls
57 lines (43 loc) · 2.31 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# =============================================================================
# Notes App - All-day transcription and AI-powered notes
# =============================================================================
# Required - Get these from console.mentra.glass
PACKAGE_NAME=com.mentra.notes
MENTRAOS_API_KEY=your_api_key_here
# Optional
PORT=3000
COOKIE_SECRET=your_cookie_secret_here
# =============================================================================
# AI Provider - choose one (defaults to gemini)
# Used for note generation and AI chat
# =============================================================================
# AGENT_PROVIDER=gemini
# AGENT_PROVIDER=anthropic
# Gemini (default) - Get from https://aistudio.google.com/apikey
GEMINI_API_KEY=your_gemini_api_key_here
# Anthropic Claude - Get from https://console.anthropic.com/
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# =============================================================================
# MongoDB - For storing transcripts and notes
# Optional but recommended for persistence
# =============================================================================
MONGODB_URI=mongodb+srv://user:pass@cluster.mongodb.net/notes
# =============================================================================
# Cloudflare R2 - For storing transcripts and photos
# =============================================================================
CLOUDFLARE_R2_ENDPOINT=https://your-account-id.r2.cloudflarestorage.com
CLOUDFLARE_R2_BUCKET_NAME=mentra-notes
CLOUDFLARE_R2_ACCESS_KEY_ID=your_r2_access_key
CLOUDFLARE_R2_SECRET_ACCESS_KEY=your_r2_secret_key
# =============================================================================
# Email (Resend) - For sending notes and transcripts via email
# =============================================================================
RESEND_API_KEY=re_your_resend_api_key
# Optional: Override the base URL for download links in emails.
# If not set, automatically derived from the request Origin/Host header.
# BASE_URL=https://your-app-domain.com
# =============================================================================
# Development Tip
# =============================================================================
# If you're running both SEGA and Notes apps, you can symlink to SEGA's .env:
# ln -sf ../sega/.env .env