-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (23 loc) · 1.13 KB
/
.env.example
File metadata and controls
31 lines (23 loc) · 1.13 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
# bigRAG environment variables
# Copy this file to .env and fill only the values you need.
# Defaults live in api/bigrag/config.py; avoid setting default-only values in deploy platforms.
# Required for provider-backed embedding.
BIGRAG_EMBEDDING_API_KEY=
# Required in production. Generate with:
# python -c 'from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())'
BIGRAG_MASTER_KEY=
# Production mode enables startup safety checks.
# BIGRAG_ENV=prod
# Set for browser clients such as the admin UI.
# BIGRAG_CORS_ORIGINS=["https://admin.example.com"]
# BIGRAG_SESSION_COOKIE_SECURE=true
# Override only when the backing services are not running on local defaults.
# BIGRAG_DATABASE_URL=postgres://bigrag:bigrag@localhost:5432/bigrag?sslmode=disable
# BIGRAG_QDRANT_URL=http://localhost:6333
# BIGRAG_REDIS_URL=redis://localhost:6379/0
# Set only for Qdrant Cloud or another protected Qdrant instance.
# BIGRAG_QDRANT_API_KEY=
# Set only when local uploads should live outside ./data/uploads.
# BIGRAG_UPLOAD_DIR=/data/uploads
# Optional proxy trust list for audit logs and IP rate limits.
# BIGRAG_TRUSTED_PROXIES=["10.0.0.0/8"]