-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
32 lines (24 loc) · 1.43 KB
/
.env.example
File metadata and controls
32 lines (24 loc) · 1.43 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
# Path to a clone of https://github.com/FoundationAgents/OpenManus
# Use forward slashes or escaped backslashes; no repo-specific machine paths in docs.
OPENMANUS_ROOT=/path/to/OpenManus
# Optional: where fleet onboarding clones repos (default: <openmanus-mcp-repo>/fleet or ./openmanus-fleet)
# OPENMANUS_FLEET_ROOT=/path/to/fleet-workspace
# Webapp API (FastAPI) — must match web_sota/vite proxy
OPENMANUS_MCP_API_PORT=10768
OPENMANUS_MCP_API_HOST=127.0.0.1
# Runner: subprocess timeout (seconds) for one OpenManus run
# OPENMANUS_RUNNER_TIMEOUT_S=300
# Max completed async jobs retained per process (MCP stdio vs API each have their own store)
# OPENMANUS_JOB_STORE_MAX_COMPLETED=100
# Local LLM bases for Glom On + dashboard chat proxy (override if not on localhost defaults)
# OPENMANUS_OLLAMA_BASE_URL=http://127.0.0.1:11434
# OPENMANUS_LMSTUDIO_BASE_URL=http://127.0.0.1:1234
# Aliases also accepted: OLLAMA_BASE_URL, LMSTUDIO_BASE_URL
# --- OpenClaw-class (optional) ---
# Background supervisor: interval schedules enqueue async OpenManus runs (same job store as POST /run/async)
# OPENMANUS_SUPERVISOR_ENABLED=false
# OPENMANUS_SUPERVISOR_TICK_S=30
# Extra SKILL.md roots (semicolon-separated). Scanned before bundled openmanus_mcp/skills/
# OPENMANUS_SKILLS_EXTRA_DIRS=D:\path\to\my-skills;D:\another\pack
# Max characters when inlining full SKILL.md into chat (POST /api/v1/chat/completions skill_ids)
# OPENMANUS_MAX_SKILL_INJECT_CHARS=24000