-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.env.quickstart.example
More file actions
53 lines (46 loc) · 2.47 KB
/
.env.quickstart.example
File metadata and controls
53 lines (46 loc) · 2.47 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
49
50
51
52
53
# ============================================================================
# Sibyl Quickstart Configuration
# ============================================================================
#
# ALL SETTINGS ARE OPTIONAL for local development!
# You can run `docker compose -f docker-compose.quickstart.yml up -d` without
# any environment configuration. API keys are entered via the web UI during
# onboarding at http://localhost:3337.
#
# This file is only needed if you want to:
# - Pre-configure API keys via environment (skip onboarding API key entry)
# - Use custom database passwords for enhanced security
# - Set a persistent JWT secret across container restarts
#
# ============================================================================
# -----------------------------------------------------------------------------
# OPTIONAL: AI Provider API Keys
# -----------------------------------------------------------------------------
# These can be configured via environment OR entered in the web UI during
# onboarding. Environment variables take precedence over database-stored keys.
#
# Get your keys from:
# OpenAI: https://platform.openai.com/api-keys
# Anthropic: https://console.anthropic.com/settings/keys
# OpenAI - Used for embeddings/semantic search (~$0.02 per 1M tokens)
# SIBYL_OPENAI_API_KEY=sk-your-openai-key-here
# Anthropic - Used for entity extraction and agents
# SIBYL_ANTHROPIC_API_KEY=sk-ant-your-anthropic-key-here
# -----------------------------------------------------------------------------
# OPTIONAL: Security
# -----------------------------------------------------------------------------
# All secrets are auto-generated if not set. For persistent deployments,
# consider setting these so secrets survive container restarts.
# JWT secret for signing auth tokens (auto-generated if not set)
# Generate with: openssl rand -hex 32
# SIBYL_JWT_SECRET=
# Fernet key for encrypting settings in database (auto-generated if not set)
# Generate with: python -c "from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())"
# SIBYL_SETTINGS_KEY=
# -----------------------------------------------------------------------------
# OPTIONAL: Database Passwords
# -----------------------------------------------------------------------------
# Default passwords are suitable for local development only.
# For production or shared environments, change these to secure values.
# SIBYL_POSTGRES_PASSWORD=sibyl_quickstart
# SIBYL_FALKORDB_PASSWORD=sibyl_quickstart