-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (27 loc) · 1.41 KB
/
Copy path.env.example
File metadata and controls
31 lines (27 loc) · 1.41 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
# =============================================================================
# Repository
# =============================================================================
# MongoDB connection string. If absent, the in-memory seed repository is used.
# MONGODB_URI=mongodb+srv://user:pass@cluster.mongodb.net
# MONGODB_DB_NAME=app-db
# Force a specific repository: "seed" (in-memory) or "mongo".
# Auto-detected from MONGODB_URI when omitted.
# REPOSITORY_TYPE=seed
# =============================================================================
# AI Chat (OpenAI-compatible)
# =============================================================================
# All three are required to enable the AI chat assistant.
# AZURE_OPENAI_API_KEY=your-api-key
# AZURE_OPENAI_ENDPOINT=https://your-host/openai/v1
# AZURE_OPENAI_DEPLOYMENT=gpt-4o
# =============================================================================
# Observability (Sentry)
# =============================================================================
# Sentry DSN. Observability is disabled (no-op) when omitted.
# VITE_SENTRY_DSN=https://examplePublicKey@o0.ingest.sentry.io/0
# ENV=development
# =============================================================================
# Authentication
# =============================================================================
# HTTP header name containing the JWT. Default: Authorization
# AUTH_HEADER_NAME=Authorization