-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy path.env.template
More file actions
38 lines (29 loc) · 1.33 KB
/
.env.template
File metadata and controls
38 lines (29 loc) · 1.33 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
# Environment variables for ARGUS Container App deployment
# Copy this file to .env and fill in your values
# Azure Subscription and Resource Group
AZURE_SUBSCRIPTION_ID=your-subscription-id-here
AZURE_RESOURCE_GROUP_NAME=rg-argus-containerapp
AZURE_LOCATION=eastus2
# Azure Environment (for azd)
AZURE_ENV_NAME=argus-dev
AZURE_PRINCIPAL_ID=your-user-principal-id
# Azure Container App Configuration
AZURE_CONTAINER_APP_NAME=ca-argus
# Azure OpenAI Configuration
AZURE_OPENAI_ENDPOINT=https://your-openai-account.openai.azure.com/
AZURE_OPENAI_KEY=your-openai-api-key
AZURE_OPENAI_MODEL_DEPLOYMENT_NAME=gpt-4
# OCR Provider Configuration
# Choose which OCR provider to use: "azure" or "mistral" (default: azure)
OCR_PROVIDER=azure
# Azure Document Intelligence Configuration (for OCR_PROVIDER=azure)
DOCUMENT_INTELLIGENCE_ENDPOINT=https://your-doc-intelligence.cognitiveservices.azure.com/
# Mistral Document AI Configuration (for OCR_PROVIDER=mistral)
# Only required if OCR_PROVIDER is set to "mistral"
MISTRAL_DOC_AI_ENDPOINT=https://your-endpoint.services.ai.azure.com/providers/mistral/azure/ocr
MISTRAL_DOC_AI_KEY=your-mistral-api-key
MISTRAL_DOC_AI_MODEL=mistral-document-ai-2505
# To get your Principal ID, run:
# az ad signed-in-user show --query id --output tsv
# To get your Subscription ID, run:
# az account show --query id --output tsv