-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
23 lines (18 loc) · 740 Bytes
/
.env.example
File metadata and controls
23 lines (18 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# ---- Required ----
# Anthropic API key for Claude tool-use agent. Get one at https://console.anthropic.com/.
ANTHROPIC_API_KEY=sk-ant-your-key-here
# Local API key the frontend will send in `x-api-key` header. Any non-empty string works locally.
API_KEY=proteinos-local-key
# ---- Optional ----
# NCBI public API key (raises BLAST rate limits). Get one at https://www.ncbi.nlm.nih.gov/account/.
NCBI_API_KEY=
# Redis URL for BullMQ job queue. If unset/unreachable, falls back to an in-memory queue.
REDIS_URL=redis://localhost:6379
# Server
NODE_ENV=development
PORT=3001
FRONTEND_URL=http://localhost:5173
LOG_LEVEL=info
MAX_CONCURRENT_CAMPAIGNS=2
# SQLite path (relative to packages/backend cwd)
DB_PATH=./data/db/proteinos.sqlite