-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
33 lines (25 loc) · 1.14 KB
/
Copy path.env.example
File metadata and controls
33 lines (25 loc) · 1.14 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
# Clarive — Self-hosted Configuration
#
# Quick start:
# 1. cp .env.example .env
# 2. Generate and fill in the 3 secrets below
# 3. docker compose up -d
#
# For the full configuration reference (AI, OAuth, email, etc.),
# see deploy/.env.example or docs/configuration.md.
# ── Required Secrets ─────────────────────────────────────────
# Generate each with the command shown, then paste the output.
# Generate: openssl rand -base64 32
POSTGRES_PASSWORD=
# Generate: openssl rand -base64 48
JWT_SECRET=
# Generate: openssl rand -base64 32
CONFIG_ENCRYPTION_KEY=
# ── URL (change when deploying to a real domain) ─────────────
CORS_ORIGINS=http://localhost:8080
# ── Port (optional) ─────────────────────────────────────────
CLARIVE_PORT=8080
# ── Cache (optional — Valkey connection for distributed caching) ──
VALKEY_URL=valkey:6379
# ── Version (optional — pin to a specific release tag) ───────
CLARIVE_VERSION=latest