-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
48 lines (38 loc) · 1.72 KB
/
.env.example
File metadata and controls
48 lines (38 loc) · 1.72 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
# Obelisk — copy to .env and fill in your values.
# Required: NEXT_PUBLIC_MAPBOX_TOKEN, MAPBOX_SERVER_TOKEN. Everything else has dev defaults.
# ─── Mapbox ───
NEXT_PUBLIC_MAPBOX_TOKEN=pk.your_token_here
# Server-side Mapbox token (optional — falls back to NEXT_PUBLIC_MAPBOX_TOKEN)
# MAPBOX_SERVER_TOKEN=sk.your_server_token_here
# Custom Mapbox styles (optional — defaults to Mapbox streets/dark if not set)
# NEXT_PUBLIC_MAPBOX_STYLE_LIGHT=mapbox://styles/YOUR_USERNAME/YOUR_LIGHT_STYLE_ID
# NEXT_PUBLIC_MAPBOX_STYLE_DARK=mapbox://styles/YOUR_USERNAME/YOUR_DARK_STYLE_ID
# Mapillary Street View Access Token
MAPILLARY_ACCESS_TOKEN=MLY|ID|Token
NEXT_PUBLIC_MAPILLARY_ACCESS_TOKEN=MLY|ID|Token
# ─── Ollama ───
OLLAMA_MODEL=qwen3.5:9b
OLLAMA_SEARCH_MODEL=qwen3.5:4b
OLLAMA_EMBED_MODEL=embeddinggemma:300m
OLLAMA_TRANSLATE_MODEL=translategemma:4b
OLLAMA_API_KEY=xxxxxxxxxxxxxxxxxxxxxxxx
# ─── Database ───
DATABASE_URL=postgresql://obelisk:obelisk_dev@localhost:5432/obelisk
POSTGRES_USER=obelisk
POSTGRES_PASSWORD=obelisk_dev
# ─── Search ───
TYPESENSE_API_KEY=obelisk_typesense_dev
# ─── Proxy ───
# Set to "cloudflare", "nginx", or "proxy" if behind a reverse proxy.
# Controls which forwarded headers are trusted for rate limiting.
# TRUST_PROXY=
# ─── Distributed Enrichment ───
# Shared secret for coordinator <-> worker auth (auto-generated if not set)
# COORDINATOR_SECRET=
# Coordinator bind address (default 127.0.0.1 — set to 0.0.0.0 for LAN access)
# COORDINATOR_HOST=127.0.0.1
# ─── Seeding ───
# Radius in meters from city center (-1 = all POIs in PBF extract)
SEED_RADIUS=-1
# Location preset (munich, berlin, vienna, istanbul)
SEED_LOCATION=munich