-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
39 lines (27 loc) · 1.06 KB
/
.env.example
File metadata and controls
39 lines (27 loc) · 1.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
# Backend server port
PORT=3001
# Database directory name (relative to project root)
CLAWUI_DB_DIR=.clawui
# Frontend API port (must match backend PORT)
NEXT_PUBLIC_API_PORT=3001
# Path to Claude CLI binary (auto-detected from ~/.local/bin/claude or PATH if unset)
# CLAUDE_PATH=
# Path to expect binary (auto-detected if not set)
# EXPECT_PATH=
# Log verbosity: debug, info, warn, error (default: info)
# LOG_LEVEL=info
# Auth token is auto-generated on each backend restart.
# Written to .clawui/auth-token — do NOT set manually.
# Dev mode: set to "1" to reuse the existing auth token across restarts
# (avoids having to re-copy the secure URL after every restart)
# CLAWUI_DEV=1
# Agent runtime: claude (default), openclaw, pi, codex
# AGENT_TYPE=claude
# Path to OpenClaw CLI binary (auto-detected if not set)
# OPENCLAW_PATH=
# OpenClaw profile name for Docker instances (adds --profile to CLI invocations)
# OPENCLAW_PROFILE=
# Path to Pi Mono CLI binary (auto-detected if not set)
# PI_PATH=
# Path to Codex CLI binary (auto-detected if not set)
# CODEX_PATH=