-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathenv.example
More file actions
27 lines (21 loc) · 922 Bytes
/
env.example
File metadata and controls
27 lines (21 loc) · 922 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
# Google API Configuration (for Calendar and Tasks)
# Download your OAuth2 credentials from Google Cloud Console
# and place it in the project root directory
GOOGLE_APPLICATION_CREDENTIALS=./client_secret.json
# Google Gemini AI API (free tier available)
# Get your API key from https://makersuite.google.com/app/apikey
GEMINI_API_KEY=your_gemini_api_key_here
# Unsplash API Key (optional)
# Get your free API keys from https://unsplash.com/developers
UNSPLASH_ACCESS_KEY=your_unsplash_access_key_here
UNSPLASH_SECRET_KEY=your_unsplash_secret_key_here
# OpenMeteo API (free, no key required)
# Weather data from https://open-meteo.com/
# Server Configuration
PORT=3000
# Home Assistant Configuration (optional)
# HOME_ASSISTANT_URL=http://your-home-assistant-url:8123
# HOME_ASSISTANT_TOKEN=your_long_lived_access_token
# Default Location (if not set in settings)
DEFAULT_LATITUDE=40.7128
DEFAULT_LONGITUDE=-74.0060