-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.docker.example
More file actions
61 lines (53 loc) · 1.47 KB
/
.env.docker.example
File metadata and controls
61 lines (53 loc) · 1.47 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# ============================================
# Docker Compose Environment Configuration
# ============================================
# Copy this file to .env and configure for your environment
# --------------------------------------------
# Application Configuration
# --------------------------------------------
# General Settings
ENV=development
PORT=8000
CORS_OVERRIDE_ALLOWED_ORIGINS=http://localhost:7000,http://localhost:7002,http://localhost:8000
SECRET_ENCRYPTION_KEY=my-secret-key-tsmh5r
# Database Settings (PostgreSQL)
# Used by the application to connect to the DB
DATABASE_URL=
DB_TYPE=postgresql
DB_HOST=localhost
DB_PORT=5433
DB_NAME=magnet_dev
DB_USER=postgres
DB_PASSWORD=password
DATABASE_ECHO=True
# Vector Database Settings
# VECTOR_DB_TYPE=PGVECTOR
# PGVECTOR_HOST=localhost
# PGVECTOR_PORT=5432
# PGVECTOR_DATABASE=magnet_dev
# PGVECTOR_USER=postgres
# PGVECTOR_PASSWORD=password
# Authentication Settings
AUTH_ENABLED=False
# MICROSOFT_ENTRA_ID_TENANT_ID=
# MICROSOFT_ENTRA_ID_CLIENT_ID=
# MICROSOFT_ENTRA_ID_CLIENT_SECRET=
# WEB_AUTH_PROVIDER_TITLE=Microsoft
# WEB_AUTH_POPUP_WIDTH=600
# WEB_AUTH_POPUP_HEIGHT=400
# Knowledge Sources
# KNOWLEDGE_SOURCE_HUBSPOT=
# FLUID_TOPICS_API_KEY=
# SHAREPOINT_TENANT_ID=
# SHAREPOINT_CLIENT_ID=
# SHAREPOINT_CLIENT_SECRET=
# Observability & Logging
# LOG_LEVEL=10
# OBSERVABILITY_ENABLED=True
# LOKI_URL=
# --- Runtime Flags ---
# RUN_MIGRATIONS=false
# RUN_FIXTURES=false
# RESET_DB=false
# BUILD_DOCS=true
# WEB_BASE_PATH=/