-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
40 lines (31 loc) · 1.37 KB
/
Copy path.env.example
File metadata and controls
40 lines (31 loc) · 1.37 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
# Backend API Configuration
# For local development:
REACT_APP_API_URL=http://localhost:8000
# For production (Railway backend):
# REACT_APP_API_URL=https://web-production-xxxx.up.railway.app
# ML API Configuration (legacy - now uses REACT_APP_API_URL)
REACT_APP_ML_API_URL=http://localhost:8000
REACT_APP_ML_API_KEY=your-api-key-here
# EXTERNAL API CONFIGURATION
# Add your API keys here for production use
# OpenWeatherMap API Key
# Get free key at: https://openweathermap.org/api
REACT_APP_OPENWEATHER_API_KEY=1801423b3942e324ab80f5b47afe0859
# Google Maps API Key
# Get key at: https://developers.google.com/maps/documentation/geocoding/start
REACT_APP_GOOGLE_MAPS_API_KEY=your_google_maps_api_key_here
# Optional: NASA FIRMS API Key
# Get key at: https://firms.modaps.eosdis.nasa.gov/api/
REACT_APP_NASA_FIRMS_API_KEY=your_nasa_firms_api_key_here
# Development settings
REACT_APP_ENABLE_MOCK_DATA=true
REACT_APP_DEBUG_ML_API=true
# Production settings (uncomment and configure for production)
# REACT_APP_ML_API_URL=https://your-ml-api-domain.com
# REACT_APP_ML_API_KEY=your-production-api-key
# REACT_APP_ENABLE_MOCK_DATA=false
# REACT_APP_DEBUG_ML_API=false
# DEVELOPMENT NOTES:
# - The app will work with demo fallback data if keys are not provided
# - For production deployment, add these to your hosting platform's environment variables
# - Never commit real API keys to version control