-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
48 lines (42 loc) · 1.99 KB
/
.env.example
File metadata and controls
48 lines (42 loc) · 1.99 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
# =============================================================================
# SQL Server Source Connection (Optional)
# =============================================================================
# If provided, the extraction process will connect directly to SQL Server
# using SMO instead of requiring a DACPAC file.
#
# Leave blank to use DACPAC-based extraction instead.
# SQL Server connection string format:
# Server=hostname\instance;Database=dbname;User Id=user;Password=pass
# Or for Windows Authentication:
# Server=hostname\instance;Database=dbname;Integrated Security=True
SQL_SERVER_CONNECTION_STRING=
# Alternative: Individual connection parameters (will build connection string)
# Instance format: hostname or hostname\instancename
SQL_INSTANCE=localhost
SQL_SERVER_DATABASE=YourDatabaseName
SQL_SERVER_USERNAME=your_username
SQL_SERVER_PASSWORD=your_password
SQL_SERVER_USE_WINDOWS_AUTH=false
# =============================================================================
# Per-stage Azure OpenAI settings (each stage has its own connection)
# =============================================================================
#
# Authentication:
# - If *_AZURE_OPENAI_KEY is provided, uses API key authentication
# - If *_AZURE_OPENAI_KEY is blank/omitted, automatically uses Entra ID (Azure AD) authentication
# (requires: az login, managed identity, or other DefaultAzureCredential method)
DRAFT_PROVIDER=azure
DRAFT_AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com
DRAFT_AZURE_OPENAI_API_VERSION=2025-01-01-preview
DRAFT_AZURE_OPENAI_KEY=
AZURE_OPENAI_DEPLOYMENT_DRAFT=gpt-4o
REFINE_PROVIDER=azure
REFINE_AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com
REFINE_AZURE_OPENAI_API_VERSION=2025-01-01-preview
REFINE_AZURE_OPENAI_KEY=
AZURE_OPENAI_DEPLOYMENT_REFINE=gpt-4o
VERIFY_PROVIDER=azure
VERIFY_AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com
VERIFY_AZURE_OPENAI_API_VERSION=2025-01-01-preview
VERIFY_AZURE_OPENAI_KEY=
AZURE_OPENAI_DEPLOYMENT_VERIFY=gpt-4o