-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (24 loc) · 868 Bytes
/
.env.example
File metadata and controls
28 lines (24 loc) · 868 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
PORT=8080
HOST=0.0.0.0
BASE_URL=http://localhost:8080
DATABASE_URL=postgres://lantern:lantern@localhost:5432/lantern
# Docker Compose — password for the managed postgres service
POSTGRES_PASSWORD=changeme_use_a_real_password_in_production
MASTER_KEY=
JWT_SECRET=
LOG_LEVEL=info
# Multi-tenant (shared hosted) mode
# Set to true to enable self-registration for any Azure tenant
MULTI_TENANT=false
# Comma-separated list of emails that have superadmin access (multi-tenant mode)
SUPERADMIN_EMAILS=
# Azure SSO (required — register an Entra ID app at portal.azure.com)
AZURE_TENANT_ID=
AZURE_CLIENT_ID=
AZURE_CLIENT_SECRET=
AZURE_CALLBACK_URL=http://localhost:8080/auth/callback
# Microsoft Graph (for M365 MCP server)
MICROSOFT_GRAPH_CLIENT_ID=
MICROSOFT_GRAPH_CLIENT_SECRET=
# MCP Server URLs (Docker Compose service names)
SERVER_URL_M365=http://m365-mcp:8080