-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.default
More file actions
43 lines (36 loc) · 1.12 KB
/
.env.default
File metadata and controls
43 lines (36 loc) · 1.12 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
# Default environment for AI CLI Preparation
# Copy to .env and adjust as needed. Values in .env override these.
# Snapshot path (render-only reads, collect-only writes)
CLI_AUDIT_SNAPSHOT_FILE=tools_snapshot.json
# Behavior toggles (0/1)
CLI_AUDIT_OFFLINE=0
CLI_AUDIT_COLLECT=0
CLI_AUDIT_RENDER=0
CLI_AUDIT_GROUP=0
CLI_AUDIT_HINTS=1
CLI_AUDIT_STREAM=0
CLI_AUDIT_FAST=0
CLI_AUDIT_PROGRESS=0
CLI_AUDIT_DEBUG=0
# Timeouts and concurrency
CLI_AUDIT_TIMEOUT_SECONDS=3
CLI_AUDIT_MAX_WORKERS=16
# Optional host concurrency caps
CLI_AUDIT_HOST_CAP_GITHUB=4
CLI_AUDIT_HOST_CAP_GITHUB_API=4
CLI_AUDIT_HOST_CAP_NPM=4
CLI_AUDIT_HOST_CAP_CRATES=4
CLI_AUDIT_HOST_CAP_GNU=2
# Rendering ergonomics
CLI_AUDIT_LINKS=1
CLI_AUDIT_EMOJI=1
CLI_AUDIT_TIMINGS=1
CLI_AUDIT_SORT=order
# Docker info detection (disable if it hangs in your environment)
CLI_AUDIT_DOCKER_INFO=1
# Installation strategy for tools
# CURRENT: Keep tools where they are currently installed (default)
# USER: Install to ~/.local/bin (user-local, no sudo)
# GLOBAL: Install to /usr/local/bin (system-wide, requires sudo)
# PROJECT: Install to ./.local/bin (project-local)
INSTALL_STRATEGY=USER