-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.env.example
More file actions
28 lines (22 loc) · 998 Bytes
/
.env.example
File metadata and controls
28 lines (22 loc) · 998 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
# Gemini API Key (Required)
# Get yours at: https://aistudio.google.com/apikey
GEMINI_API_KEY=your_gemini_api_key_here
# Google Maps API Key (Optional but recommended for Street View)
# Get yours at: https://developers.google.com/maps/documentation/javascript/get-api-key
# Enable these APIs in Google Cloud Console:
# - Maps JavaScript API
# - Street View Static API
GOOGLE_API_KEY=your_google_maps_api_key_here
# Supabase Configuration (for image storage)
SUPABASE_URL=your_supabase_url
SUPABASE_KEY=your_supabase_anon_key_here
# ==========================================
# AUTHENTICATION CONFIGURATION (Required for user data isolation)
# ==========================================
# Supabase Service Role Key (for server-side auth)
# Get from Supabase Dashboard > Settings > API > service_role key
SUPABASE_SERVICE_ROLE_KEY=your_supabase_service_role_key_here
# JWT Configuration
# Generate a secure secret: openssl rand -base64 32
JWT_SECRET=your_jwt_secret_here
JWT_EXPIRATION=30d