-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (26 loc) · 1.57 KB
/
.env.example
File metadata and controls
33 lines (26 loc) · 1.57 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
# Copy this file to .env and adjust for your AEM instance.
# For local AEM with WKND sample content, the defaults below work as-is (admin/admin).
# For production or to enforce user-level permissions, use a dedicated service user
# (see SETUP.md "Service user (recommended for production)").
# ── Required ────────────────────────────────────────────────────────
# AEM Author URL (local SDK default: http://localhost:4502)
AEM_BASE_URL=http://localhost:4502
# AEM credentials: admin/admin for local; use a service user in production
AEM_USERNAME=admin
AEM_PASSWORD=admin
# ── Optional — safe defaults ─────────────────────────────────────────
# Path to governance rules. Default: governance-rules.json (project root, same folder as .env).
# Set to override: absolute path, or path relative to project root.
# GOVERNANCE_RULES_PATH=
# HTTP request timeout in milliseconds (default: 30000)
AEM_TIMEOUT_MS=30000
# Max pages per violation scan (default: 500)
AEM_MAX_PAGES=500
# Max depth when scanning for components (default: 10)
TRAVERSAL_DEPTH=10
# Log every AEM request and full response body to stderr (default: unset). Set to 1 or true to enable.
# MACE_LOG_AEM=1
# Also append the same log to this file so you can tail -f it (optional).
# MACE_LOG_AEM_FILE=./mace-aem.log
# Max response body length to log; 0 = no limit (default: 15000). Truncated beyond this.
# MACE_LOG_AEM_MAX_BODY=15000