-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (22 loc) · 1.34 KB
/
.env.example
File metadata and controls
28 lines (22 loc) · 1.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
# Copy to .env (alongside this file) and fill in.
#
# The example loads .env via cppdotenv. Existing process-env variables
# win — exporting ANTHROPIC_API_KEY in your shell still takes precedence
# over the value below.
# ── Required ──────────────────────────────────────────────────────────
ANTHROPIC_API_KEY=sk-ant-...
# Default targets the docker-compose-managed Postgres on host port 55432.
# When running INSIDE the agent container, docker-compose.yml overrides
# this with the in-network address (postgres:5432) so this value is only
# used when you run the binary directly on the host.
POSTGRES_URL=postgresql://postgres:test@localhost:55432/neograph
# ── Optional ──────────────────────────────────────────────────────────
# Defaults to http://localhost:11235 when unset. Same override note as
# POSTGRES_URL: docker-compose flips this to http://crawl4ai:11235 in-network.
# CRAWL4AI_URL=http://localhost:11235
# Defaults to claude-sonnet-4-5.
# DR_MODEL=claude-sonnet-4-5
# ── Postgres credentials (used by docker-compose to provision the DB) ─
POSTGRES_USER=postgres
POSTGRES_PASSWORD=test
POSTGRES_DB=neograph