-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
34 lines (27 loc) · 1.09 KB
/
.env.example
File metadata and controls
34 lines (27 loc) · 1.09 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
# docker/.env.example
# Copy this file to docker/.env and fill in your values.
# Used by docker-compose.yml for the Docker-based execution environment.
# SQL Server password
MSSQL_SA_PASSWORD=YourStrong!Password123
# AI configuration (passed into the executor container)
# Option 1: OpenAI
OPENAI_API_KEY=your-openai-api-key-here
OPENAI_MODEL=gpt-4o
# Option 1b: OpenAI-compatible provider
# OPENAI_COMPAT_BASE_URL=https://your-provider.example.com/v1
# OPENAI_COMPAT_API_KEY=your-openai-compatible-api-key-here
# OPENAI_COMPAT_MODEL=gpt-4o-mini
# OPENAI_COMPAT_ORG=optional-org-id
# OPENAI_COMPAT_PROJECT=optional-project-id
# Option 2: Azure OpenAI
# AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com/
# AZURE_OPENAI_API_KEY=your-azure-openai-api-key-here
# AZURE_OPENAI_DEPLOYMENT=gpt-4o
# AI Provider (auto-detected if not set)
# AI_PROVIDER=OpenAI
# AI_PROVIDER=OpenAICompatible
# Discord notifications (optional)
Discord__Enabled=false
Discord__WebhookUrl=your-discord-webhook-url-here
# Output path for the Docker volume mount (optional — defaults to ../output)
# OUTPUT_PATH=../output