-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (29 loc) · 2.34 KB
/
.env.example
File metadata and controls
36 lines (29 loc) · 2.34 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
# ── Database ──────────────────────────────────────────────────────────────────
DATABASE_URL=postgresql://plotline:plotline@localhost:5432/plotline
POSTGRES_USER=plotline
POSTGRES_PASSWORD=plotline
POSTGRES_DB=plotline
# ── Redis ─────────────────────────────────────────────────────────────────────
REDIS_URL=redis://localhost:6379/0
# ── Application ───────────────────────────────────────────────────────────────
APP_ENV=development
LOG_LEVEL=INFO
CORS_ORIGINS=["http://localhost:5173","http://localhost:3000","http://localhost:80"]
# ── External APIs ─────────────────────────────────────────────────────────────
# Census API key — optional, free key from https://api.census.gov/data/key_signup.html
# Increases rate limits for demographic data fetching.
CENSUS_API_KEY=your_key_here
# Socrata app token — optional, increases rate limits for county property data.
# Register at https://dev.socrata.com/
SOCRATA_APP_TOKEN=
# ── Titiler (set automatically by Docker Compose) ────────────────────────────
TITILER_URL=http://titiler:80
VITE_TITILER_URL=http://localhost:8001
# ── Internal service URLs (Docker networking) ─────────────────────────────────
# Used by the API container to call itself (e.g. for Landsat STAC signing)
API_INTERNAL_URL=http://api:8000
# ── Frontend ──────────────────────────────────────────────────────────────────
# Full API origin for browser requests. Empty = use Vite proxy (recommended for dev).
VITE_API_BASE_URL=http://localhost:8000
# Where the Vite dev server proxies /api requests (Docker service name)
VITE_API_PROXY_TARGET=http://api:8000