-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
33 lines (27 loc) · 1.18 KB
/
.env.example
File metadata and controls
33 lines (27 loc) · 1.18 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
# 🔒 SECURITY NOTICE: Never commit .env to version control!
# Copy this file to .env and add your actual Supabase credentials
#
# The app works in two modes:
# - WITH credentials: Full cloud sync and authentication
# - WITHOUT credentials: Local storage only (no account needed)
# Your Supabase Project Settings
VITE_SUPABASE_URL=https://your-project-id.supabase.co
VITE_SUPABASE_ANON_KEY=your_anon_key_here
# Your Anthropic API Key (for AI features)
VITE_ANTHROPIC_API_KEY=your_anthropic_api_key_here
# Your Gemini API Key (for AI features)
VITE_GEMINI_API_KEY=your_gemini_api_key_here
# 📋 Setup Instructions:
# 1. Copy this file: cp .env.example .env
# 2. Go to your Supabase project dashboard
# 3. Navigate to Settings > API
# 4. Copy the Project URL and anon/public key
# 5. Replace the values above with your actual credentials
# 6. Save the file
# 7. Restart your development server
# 🔐 Where to find your credentials:
# Supabase Dashboard > Project Settings > API > Project URL & anon key
# 🐛 Development Options:
# Enable verbose database and auth call logging (development only)
# Set to 'true' to see detailed console logs for every database operation
# VITE_ENABLE_DB_LOGS=true