-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
30 lines (22 loc) · 735 Bytes
/
.env.example
File metadata and controls
30 lines (22 loc) · 735 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
25
26
27
28
29
30
# Database
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/ragbase
# Redis
REDIS_URL=redis://localhost:6379
# API
PORT=3000
# Internal (For local dev: http://localhost:3000/internal/callback, For Docker: http://backend:3000/internal/callback)
CALLBACK_URL=http://localhost:3000/internal/callback
# Infrastructure
PDF_CONCURRENCY=3
# Qdrant
# If using Qdrant Cloud
QDRANT_URL=https://your-cluster-url.qdrant.io
QDRANT_API_KEY=your_qdrant_api_key
# If using local Qdrant
# QDRANT_URL=http://localhost:6333
# QDRANT_API_KEY=
QDRANT_COLLECTION=ragbase_hybrid
VECTOR_DB_PROVIDER=qdrant
# AES-256-GCM Encryption (for Drive OAuth tokens)
# Generate with: openssl rand -hex 32
APP_ENCRYPTION_KEY=your_32_byte_hex_string_here