-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
81 lines (67 loc) · 2.44 KB
/
Copy path.env.example
File metadata and controls
81 lines (67 loc) · 2.44 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# =============================================================================
# UDC Enterprise Platform — Environment Variables
# Copy to .env and fill in your values
# =============================================================================
# --- PostgreSQL (metadata store, audit log, API keys) ---
POSTGRES_HOST=postgres
POSTGRES_PORT=5432
POSTGRES_DB=udc
POSTGRES_USER=udc_admin
POSTGRES_PASSWORD=changeme_postgres_password
# --- Redis (caching, event bus) ---
REDIS_URL=redis://redis:6379/0
# --- ChromaDB (vector store for ContextVault) ---
CHROMADB_URL=http://chromadb:8000
# --- Azure OpenAI ---
AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com/
AZURE_OPENAI_API_KEY=your-azure-openai-key
AZURE_OPENAI_DEPLOYMENT_CHAT=gpt-4o
AZURE_OPENAI_DEPLOYMENT_EMBEDDING=text-embedding-3-small
AZURE_OPENAI_API_VERSION=2024-12-01-preview
# --- Azure AI Vision (OCR for VisionLens) ---
AZURE_VISION_ENDPOINT=https://your-resource.cognitiveservices.azure.com/
AZURE_VISION_API_KEY=your-azure-vision-key
# --- Power BI (Dashboard generation) ---
POWERBI_TENANT_ID=your-tenant-id
POWERBI_CLIENT_ID=your-client-id
POWERBI_CLIENT_SECRET=your-client-secret
POWERBI_WORKSPACE_ID=your-workspace-id
# --- SAP S/4HANA (OData connector) ---
SAP_ODATA_BASE_URL=https://your-sap-host/sap/opu/odata/sap/
SAP_ODATA_USERNAME=your-sap-user
SAP_ODATA_PASSWORD=your-sap-password
# --- Microsoft Fabric (Lakehouse connector) ---
FABRIC_TENANT_ID=your-tenant-id
FABRIC_CLIENT_ID=your-fabric-client-id
FABRIC_CLIENT_SECRET=your-fabric-client-secret
FABRIC_WORKSPACE_ID=your-fabric-workspace-id
FABRIC_LAKEHOUSE_ID=your-lakehouse-id
# --- Azure Service Principal (JWT auth) ---
AZURE_AD_TENANT_ID=your-tenant-id
AZURE_AD_CLIENT_ID=your-client-id
AZURE_AD_AUDIENCE=api://udc-enterprise-platform
# --- Azure Container Registry (for CI/CD) ---
ACR_REGISTRY=your-registry.azurecr.io
ACR_USERNAME=your-acr-user
ACR_PASSWORD=your-acr-password
# --- Application settings ---
LOG_LEVEL=INFO
ENVIRONMENT=development
API_KEY_MASTER=changeme_master_api_key
# --- VisionLens YOLO model ---
VISIONLENS_MODEL_PATH=yolov8n.pt
# --- Service ports (internal) ---
CLASSIFIER_PORT=8080
METACATALOG_PORT=8001
CONTEXTVAULT_PORT=8002
VISIONLENS_PORT=8003
DESKTOPAGENT_PORT=8004
POLICYGUARD_PORT=8005
ORCHESTRATOR_PORT=8006
PORTAL_PORT=3000
# --- gRPC ports (internal) ---
CLASSIFIER_GRPC_PORT=50051
METACATALOG_GRPC_PORT=50052
CONTEXTVAULT_GRPC_PORT=50053
POLICYGUARD_GRPC_PORT=50054
VISIONLENS_GRPC_PORT=50055