-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (22 loc) · 1.52 KB
/
.env.example
File metadata and controls
27 lines (22 loc) · 1.52 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
# ── Database ──────────────────────────────────────────────
POSTGRES_USER=minirag
POSTGRES_PASSWORD=changeme
POSTGRES_DB=minirag
DATABASE_URL=postgresql+asyncpg://minirag:changeme@postgres:5432/minirag
# ── Redis ─────────────────────────────────────────────────
REDIS_URL=redis://redis:6379/0
# ── Qdrant ────────────────────────────────────────────────
QDRANT_URL=http://qdrant:6333
# ── Security ──────────────────────────────────────────────
# Generate with: python -c "from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())"
ENCRYPTION_KEY=
# Generate with: openssl rand -hex 32
JWT_SECRET_KEY=
JWT_ALGORITHM=HS256
JWT_EXPIRE_MINUTES=60
# ── CORS ──────────────────────────────────────────────────
# Comma-separated allowed origins, e.g. "https://example.com,https://app.example.com"
ALLOWED_ORIGINS=*
# ── LLM defaults ─────────────────────────────────────────
DEFAULT_LLM_MODEL=gpt-4o-mini
DEFAULT_EMBEDDING_MODEL=text-embedding-3-small