-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.docker.example
More file actions
56 lines (43 loc) · 1.57 KB
/
.env.docker.example
File metadata and controls
56 lines (43 loc) · 1.57 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
45
46
47
48
49
50
51
52
53
54
55
56
# Docker Development Environment Variables
# Copy this file to .env.docker and customize as needed
# This file contains Docker-specific overrides for the development environment
# Environment
SOAR_ENV=development
# Database Configuration (Docker)
DATABASE_URL=postgresql://postgres:postgres@db:5432/soar_dev
TEST_DATABASE_URL=postgresql://postgres:postgres@db:5432/soar_test
# NATS Configuration (Docker)
NATS_URL=nats://nats:4222
# Google Maps API Key (required for operations page)
# Get your key from: https://console.cloud.google.com/apis/credentials
GOOGLE_MAPS_API_KEY=your_google_maps_api_key_here
# JWT Authentication (dev/testing only - change in production)
JWT_SECRET=dev_jwt_secret_change_in_production
# Application URLs
BASE_URL=http://localhost:3000
API_HOST=0.0.0.0
API_PORT=3000
# Logging
RUST_LOG=info,soar=debug
RUST_BACKTRACE=1
# Frontend Configuration (used by Vite)
VITE_API_URL=http://localhost:3000
VITE_GOOGLE_MAPS_API_KEY=your_google_maps_api_key_here
NODE_ENV=development
# APRS Connection (optional - for data ingestion)
OGN_APRS_SERVER=aprs.glidernet.org
OGN_APRS_PORT=14580
# OpenAIP API Key (optional - for airspace data)
# Get from: https://www.openaip.net/users/clients
# OPENAIP_API_KEY=
# SMTP Email Configuration (optional - for email features)
# SMTP_SERVER=your.smtp.server.com
# SMTP_PORT=587
# SMTP_USERNAME=your_smtp_username
# SMTP_PASSWORD=your_smtp_password
# FROM_EMAIL=noreply@yourdomain.com
# FROM_NAME="SOAR Development"
# Pelias Geocoding (optional)
# PELIAS_BASE_URL=http://localhost:4000
# Sitemap Generation
SITEMAP_ROOT=/tmp/soar/sitemap