-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
44 lines (34 loc) · 1.33 KB
/
Copy pathenv.example
File metadata and controls
44 lines (34 loc) · 1.33 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
41
42
43
44
# AEGIS NET Environment Variables
# NASA API Configuration
NASA_API_KEY=your_nasa_api_key_here
# NASA API Endpoints (Free tier available)
# Get your API key at: https://api.nasa.gov/
# Rate limit: 1000 requests per hour (free tier)
# Available APIs:
# - Near Earth Object API: https://api.nasa.gov/neo/rest/v1
# - Asteroid API: https://api.nasa.gov/neo/rest/v1/neo/{asteroid_id}
# - JPL Small Body Database: https://ssd.jpl.nasa.gov/api/sbdb.api
# Google Maps API Configuration
NEXT_PUBLIC_GOOGLE_MAPS_API_KEY=your_google_maps_api_key_here
# Google Maps API Setup:
# 1. Go to: https://console.cloud.google.com/
# 2. Create a new project or select existing
# 3. Enable "Places API" and "Maps JavaScript API"
# 4. Create credentials (API Key)
# 5. Restrict the API key to your domain for security
# 6. Add this key to your .env file
# Database Configuration
MONGODB_URL=mongodb://admin:aegis123@localhost:27017/aegis_net?authSource=admin
# AI Service Configuration
AI_SERVICE_URL=http://localhost:8000
# Application Configuration
NODE_ENV=development
NEXT_PUBLIC_APP_URL=http://localhost:3000
# Security
NEXTAUTH_SECRET=your_nextauth_secret_here
NEXTAUTH_URL=http://localhost:3000
# Optional: Redis for caching
REDIS_URL=redis://localhost:6379
# Optional: External APIs
WEATHER_API_KEY=your_weather_api_key_here
TRAFFIC_API_KEY=your_traffic_api_key_here