-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.env.example
More file actions
24 lines (20 loc) · 815 Bytes
/
Copy path.env.example
File metadata and controls
24 lines (20 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Core SPECTRA web service
SPECTRA_BOOTSTRAP_SECRET=
SPECTRA_SESSION_SECRET=replace-with-strong-secret
SPECTRA_JWT_SECRET=replace-with-strong-secret
SPECTRA_WEBAUTHN_ORIGIN=http://localhost:5000
SPECTRA_WEBAUTHN_RP_ID=localhost
SPECTRA_WEBAUTHN_RP_NAME=SPECTRA
# Optional integration endpoints
# Leave blank to run without sidecars. Set URL to reconnect later.
SPECTRA_MEMSHADOW_URL=
# Vector search key
QDRANT_API_KEY=replace-with-strong-api-key
# Optional search cache for search results, metadata, and KEYSTONE anchor tables.
# Supports Redis or QIHSE KV (built-in RESP2/RESP3 wire-compatible KV store).
# Leave blank or unset to disable caching (search hits the DB directly).
REDIS_URL=redis://localhost:6379
# Add new provider keys below as needed
# OPENAI_API_KEY=
# ANTHROPIC_API_KEY=
# MISTRAL_API_KEY=