-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (26 loc) · 1.25 KB
/
Copy path.env.example
File metadata and controls
31 lines (26 loc) · 1.25 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
# Copy to .env. All optional for the offline (fixture) vertical slice.
# --- Movebank ---
# Only needed for the v2 REST surface (token-scoped) or to ingest live data.
# Leave blank to run entirely against recorded fixtures (default).
MOVEBANK_API_BASE=https://api.movebank.org/v2
MOVEBANK_PUBLIC_BASE=https://www.movebank.org/movebank/service/public/json
MOVEBANK_USERNAME=
MOVEBANK_PASSWORD=
MOVEBANK_ACCESS_TOKEN=
# Data source: "fixture" (offline, deterministic, default) or "live".
# In "live" mode, fully-public studies read via the public JSON service with NO token
# (the service REQUIRES a sensor_type, sent automatically). A token is only needed for
# the v2-REST surface and for enumerating studies (direct-read returns 401 without one).
# Try it: `npm run live:check` reads the public Galapagos Albatrosses study (id 2911040).
MOVEBANK_MODE=fixture
# --- LLM narrative generator ---
# Boundary is mockable. Default is the deterministic, fully-grounded template generator.
# Set to "anthropic" to use a real model (requires ANTHROPIC_API_KEY).
NARRATIVE_PROVIDER=mock
ANTHROPIC_API_KEY=
NARRATIVE_MODEL=claude-haiku-4-5-20251001
# --- Server ---
PORT=8787
# --- Storage ---
# Path to the sqlite database file. ":memory:" for ephemeral.
DB_PATH=data/continuity.db