-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
55 lines (41 loc) · 1.8 KB
/
.env.example
File metadata and controls
55 lines (41 loc) · 1.8 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
# Environment Variables for Pacifica
#
# Copy this file to .env and fill in real values for local development.
# For GitHub Actions deployment secrets, see the workflow files.
# =============================================================================
# Local Development
# =============================================================================
# Database (local dev only - production uses Docker network)
DATABASE_URL=postgresql+asyncpg://pacifica:password@localhost:5432/pacifica
# Home Location (for drive time calculations)
HOME_LAT=33.7455
HOME_LNG=-117.8676
# API Keys
GOOGLE_MAPS_API_KEY=your_google_maps_api_key_here
# Optional Services
# TELEGRAM_WEBHOOK_URL=http://localhost:8080/notify
# LLM Extraction (model selection for local Ollama)
# LLM_MODEL=llama3.2:1b
# Wildlife Scrapers
# WHALE_ALERT_API_KEY=your_key_here # Free registration at https://whale-alert.io/
# NITTER_API_URL= # Base URL of your Nitter instance (do not commit a real value)
# Internal Communication
# INTERNAL_BROADCAST_TOKEN=change_me_in_production
# Application Settings
# LOG_FORMAT=pretty # 'json' for production (Grafana/Loki), 'pretty' for dev
# ENVIRONMENT=development
# Frontend API URL (for local development)
# VITE_API_URL=http://localhost:4900
# VPS Configuration
# DEPLOY_HOST=pch.onl
# DEPLOY_USER=deploy
# DEPLOY_SERVICES_PATH=/opt/pacifica
# DEPLOY_STATIC_PATH_PROD=/var/www/pacifica/prod
# DEPLOY_STATIC_PATH_STAGING=/var/www/pacifica/staging
# Frontend API URL (used by CI builds - both prod and staging use same API)
# VITE_API_URL=https://api.pch.onl
# Database (used by docker-compose on VPS)
# POSTGRES_PASSWORD=your_secure_production_password
# GitHub Container Registry token (PAT with read:packages scope)
# Used by VPS to pull Docker images
# GHCR_TOKEN=ghp_xxxxxxxxxxxxxxxxxxxx