-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
56 lines (45 loc) · 2.06 KB
/
Copy path.env.example
File metadata and controls
56 lines (45 loc) · 2.06 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
# Multi-Agent AI Platform - Environment Configuration
# Copy this file to .env and fill in your actual values
#############################################################
# Redis Configuration
#############################################################
REDIS_PASSWORD=changeme_secure_password_here
#############################################################
# Azure Application Insights (Production)
#############################################################
# Get this from Azure Portal > Application Insights > Overview
APPLICATIONINSIGHTS_CONNECTION_STRING=InstrumentationKey=your-key-here;IngestionEndpoint=https://region.in.applicationinsights.azure.com/
#############################################################
# Azure Cosmos DB (Production)
#############################################################
# Get this from Azure Portal > Cosmos DB > Keys
COSMOS_DB_ENDPOINT=https://your-cosmosdb-account.documents.azure.com:443/
#############################################################
# Azure Key Vault (Production)
#############################################################
# Get this from Azure Portal > Key Vault > Overview
KEY_VAULT_URL=https://your-keyvault.vault.azure.net/
#############################################################
# Agent Configuration (Optional Overrides)
#############################################################
# Uncomment and customize as needed
# Python environment
# PYTHONUNBUFFERED=1
# PYTHONDONTWRITEBYTECODE=1
# Logging
# LOG_LEVEL=INFO
# Application settings
# ENVIRONMENT=production
# PORT=8080
#############################################################
# Nginx Configuration (Optional)
#############################################################
# SSL/TLS certificate paths (if using HTTPS)
# SSL_CERTIFICATE=/etc/nginx/ssl/cert.pem
# SSL_CERTIFICATE_KEY=/etc/nginx/ssl/key.pem
#############################################################
# Development Settings (Local Only)
#############################################################
# Uncomment for local development
# ENVIRONMENT=development
# REDIS_PASSWORD=devpassword