-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
67 lines (56 loc) · 1.42 KB
/
.env.example
File metadata and controls
67 lines (56 loc) · 1.42 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
# Adobe API Configuration
ADOBE_ORG_ID=YOUR_ORG_ID@AdobeOrg
ADOBE_CLIENT_ID=your_client_id_here
ADOBE_CLIENT_SECRET=your_client_secret_here
ADOBE_TECH_ACCOUNT_ID=your_tech_account@techacct.adobe.com
ADOBE_PRIVATE_KEY_PATH=/path/to/private.key
# Database Configuration
DB_HOST=localhost
DB_PORT=1433
DB_NAME=AdobeAutomation
DB_USER=sa
DB_PASSWORD=YourStrong@Passw0rd
# Redis Configuration
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_PASSWORD=
# Active Directory
AD_DOMAIN=company.local
AD_SERVER=dc.company.local
AD_USER=automation@company.local
AD_PASSWORD=your_ad_password
# Azure AD
AZURE_TENANT_ID=your_tenant_id
AZURE_CLIENT_ID=your_azure_client_id
AZURE_CLIENT_SECRET=your_azure_secret
# Monitoring
PROMETHEUS_PORT=9090
GRAFANA_PORT=3000
GRAFANA_ADMIN_PASSWORD=admin
# Email Configuration
SMTP_HOST=smtp.company.com
SMTP_PORT=587
SMTP_USER=notifications@company.com
SMTP_PASSWORD=email_password
SMTP_FROM=adobe-automation@company.com
# API Configuration
API_PORT=8000
API_KEY=generate_secure_api_key_here
JWT_SECRET=generate_secure_jwt_secret_here
# Logging
LOG_LEVEL=INFO
LOG_PATH=/var/log/adobe-automation
# Features
ENABLE_AUTO_PROVISIONING=true
ENABLE_LICENSE_OPTIMIZATION=true
ENABLE_AUDIT_LOGGING=true
ENABLE_METRICS=true
# Schedules (cron format)
SYNC_SCHEDULE="0 */4 * * *"
OPTIMIZATION_SCHEDULE="0 2 * * *"
REPORT_SCHEDULE="0 8 * * MON"
# Limits
MAX_API_RETRIES=3
API_TIMEOUT_SECONDS=30
BATCH_SIZE=100
RATE_LIMIT_PER_MINUTE=100