create-urateam 0.1.25 → 0.1.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -64,9 +64,9 @@ DASHBOARD_PASSWORD=
|
|
|
64
64
|
# Set DASHBOARD_BASE_PATH if mounting under a path prefix (no trailing slash).
|
|
65
65
|
# DASHBOARD_BASE_PATH=
|
|
66
66
|
|
|
67
|
-
# === Workspace (defaults
|
|
68
|
-
# AGENT_RUN_DIR
|
|
69
|
-
# REPO_CLONE_DIR
|
|
67
|
+
# === Workspace (defaults to $HOME-relative paths, writable by any user) ===
|
|
68
|
+
# AGENT_RUN_DIR=$HOME/data/runs
|
|
69
|
+
# REPO_CLONE_DIR=$HOME/work/repos
|
|
70
70
|
# WORKTREE_TTL_HOURS=24
|
|
71
71
|
|
|
72
72
|
# === Concurrency ===
|
|
@@ -171,7 +171,7 @@ git pull && docker compose up -d --build
|
|
|
171
171
|
|
|
172
172
|
`pgdata` and `agent-runs` are named docker volumes. For backups, snapshot the
|
|
173
173
|
host volume directory or use `docker run --rm -v pgdata:/data … pg_dump` style
|
|
174
|
-
sidecars. Workspace dirs (
|
|
174
|
+
sidecars. Workspace dirs (default `$HOME/data/runs` and `$HOME/work/repos`) auto-clean
|
|
175
175
|
older than `WORKTREE_TTL_HOURS` (default 24h).
|
|
176
176
|
|
|
177
177
|
## How it works
|
|
@@ -32,8 +32,8 @@ services:
|
|
|
32
32
|
- "3000"
|
|
33
33
|
- "3001"
|
|
34
34
|
volumes:
|
|
35
|
-
- agent-runs:/
|
|
36
|
-
- agent-repos:/
|
|
35
|
+
- agent-runs:/home/ura/data/runs
|
|
36
|
+
- agent-repos:/home/ura/work/repos
|
|
37
37
|
# Claude OAuth credentials — bind-mounted rw so the SDK can auto-refresh
|
|
38
38
|
# tokens. Run `claude login` against the host's ~/.claude/ before first
|
|
39
39
|
# `docker compose up` (see README "Production deploy"). Bind-mounting a
|