-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.env.example
More file actions
37 lines (27 loc) · 1.14 KB
/
.env.example
File metadata and controls
37 lines (27 loc) · 1.14 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
# PortOS Environment Variables
# Copy to .env and customize for your deployment.
# Database mode: "docker" (containerized pg, port 5561), "native" (system pg, port 5432), "file" (deprecated JSON storage)
# PGMODE=docker
# PostgreSQL password (must match docker-compose.yml POSTGRES_PASSWORD in Docker mode)
# Note: Changing this after initial setup requires manually updating the PostgreSQL user password (or recreating the DB volume).
PGPASSWORD=portos
# Optional overrides (defaults auto-detect from PGMODE)
# PGHOST=localhost
# PGPORT=5432
# PGDATABASE=portos
# PGUSER=portos
# CDP browser automation host
# CDP_HOST=127.0.0.1
# Server host binding
# HOST=0.0.0.0
# OpenClaw API credentials
# OPENCLAW_API_URL=https://api.openclaw.example.com
# OPENCLAW_API_KEY=your_openclaw_api_key_here
# Chief of Staff runner endpoint (used when CoS runs as a separate process)
# COS_RUNNER_URL=http://localhost:5558
# LM Studio local inference server URL
# LM_STUDIO_URL=http://localhost:1234
# Path to the Claude CLI binary (defaults to system PATH)
# CLAUDE_PATH=/usr/local/bin/claude
# Duration (minutes) for Moltworld agent sessions
# MOLTWORLD_DURATION_MINUTES=60