forked from Patwaji/SkyGuard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (21 loc) · 892 Bytes
/
Copy path.env.example
File metadata and controls
27 lines (21 loc) · 892 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
# SkyGuard Environment Variables - EXAMPLE
# =====================================================
# Copy this file to .env and fill in your actual API keys
# Gemini AI API Key for Policy Advisor
# Get your API key from: https://makersuite.google.com/app/apikey
GEMINI_API_KEY=your_gemini_api_key_here
# OpenAQ API Key for ground truth data
# Get your API key from: https://openaq.org/developers
OPENAQ_API_KEY=your_openaq_api_key_here
# OpenMeteo API Configuration (Free - no key required)
OPENMETEO_BASE_URL=https://air-quality-api.open-meteo.com/v1/air-quality
OPENMETEO_WEATHER_URL=https://api.open-meteo.com/v1/forecast
# NASA API Configuration (if needed in future)
# NASA_API_KEY=your_nasa_api_key_here
# Location Configuration - Change to your target city
TARGET_CITY=Delhi
TARGET_LATITUDE=28.6139
TARGET_LONGITUDE=77.2090
# System Configuration
DEBUG_MODE=False
CACHE_TTL=3600