-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
47 lines (40 loc) · 1.12 KB
/
.env.example
File metadata and controls
47 lines (40 loc) · 1.12 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
# PostgreSQL
POSTGRES_USER=quicktrust
POSTGRES_PASSWORD=quicktrust_dev
POSTGRES_DB=quicktrust
DATABASE_URL=postgresql+asyncpg://quicktrust:quicktrust_dev@postgres:5432/quicktrust
# Redis
REDIS_URL=redis://redis:6379/0
# Keycloak
KEYCLOAK_URL=http://keycloak:8080
KEYCLOAK_REALM=quicktrust
KEYCLOAK_CLIENT_ID=quicktrust-api
KEYCLOAK_CLIENT_SECRET=quicktrust-api-secret
KEYCLOAK_ADMIN=admin
KEYCLOAK_ADMIN_PASSWORD=admin
# MinIO
MINIO_ROOT_USER=quicktrust
MINIO_ROOT_PASSWORD=quicktrust_dev
MINIO_URL=http://minio:9000
MINIO_BUCKET=quicktrust-evidence
# LiteLLM / AI
LITELLM_MODEL=gpt-4o-mini
OPENAI_API_KEY=sk-your-key-here
# SMTP Email (optional — notifications fall back to logging when not configured)
SMTP_HOST=
SMTP_PORT=587
SMTP_USER=
SMTP_PASSWORD=
SMTP_FROM_EMAIL=notifications@quicktrust.dev
SMTP_USE_TLS=true
# Frontend
NEXT_PUBLIC_API_URL=http://localhost:8000
NEXT_PUBLIC_KEYCLOAK_URL=http://localhost:8080
NEXT_PUBLIC_KEYCLOAK_REALM=quicktrust
NEXT_PUBLIC_KEYCLOAK_CLIENT_ID=quicktrust-web
# App
APP_NAME=QuickTrust
APP_ENV=development
LOG_LEVEL=INFO
SECRET_KEY=change-me-in-production
CORS_ORIGINS=http://localhost:3000