-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
51 lines (39 loc) · 2.96 KB
/
Copy path.env.example
File metadata and controls
51 lines (39 loc) · 2.96 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
# =============================================================================
# MindScrolling — Environment Variables Reference
# Copy to .env and fill in real values. Never commit .env.
# =============================================================================
# ─── Supabase ─────────────────────────────────────────────────────────────────
# Your project URL from: https://app.supabase.com → Project Settings → API
SUPABASE_URL=https://your-project-id.supabase.co
# Anon/public key (safe to use in backend with RLS enabled)
SUPABASE_ANON_KEY=your-supabase-anon-key
# ─── AI Services ──────────────────────────────────────────────────────────────
# Voyage AI — semantic embeddings for quote recommendations
# Get key at: https://dash.voyageai.com
# Model used: voyage-3-lite (512 dims, ~$0.02 per 1M tokens)
VOYAGE_API_KEY=pa-your-voyage-api-key
# Anthropic Claude — weekly philosophy insight generation
# Get key at: https://console.anthropic.com
# Model used: claude-haiku-4-5-20251001 (cached 24 h per device)
ANTHROPIC_API_KEY=sk-ant-your-anthropic-key
# ─── Backend server ───────────────────────────────────────────────────────────
PORT=3000
# Allowed CORS origin for the legacy web frontend.
# Flutter apps communicate directly — CORS does not apply to native apps.
# Set to your production domain when deploying (e.g. https://mindscrolling.app)
ALLOWED_ORIGIN=http://localhost:5173
# ─── API Base (used by Flutter / legacy web) ──────────────────────────────────
# Set to your deployed backend URL in production
VITE_API_URL=http://localhost:3000
# For Flutter: set via --dart-define or a .env loader
API_BASE_URL=http://localhost:3000
# ─── Monetization ─────────────────────────────────────────────────────────────
PREMIUM_BASE_PRICE_USD=2.99
# External donation link (Buy Me a Coffee, Ko-fi, etc.)
VITE_DONATION_LINK=https://buymeacoffee.com/your-username
DONATION_LINK=https://buymeacoffee.com/your-username
# ─── App defaults ─────────────────────────────────────────────────────────────
APP_DEFAULT_LANGUAGE=en
# ─── Rate limiting ─────────────────────────────────────────────────────────────
RATE_LIMIT_MAX=60
RATE_LIMIT_WINDOW_MS=60000