openclaw-manager 0.1.1 → 0.1.2

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.
@@ -1,12 +1,12 @@
1
1
  #!/usr/bin/env bash
2
2
  set -euo pipefail
3
3
 
4
- NAME="${MANAGER_DOCKER_NAME:-moltbot-manager}"
4
+ NAME="${MANAGER_DOCKER_NAME:-openclaw-manager}"
5
5
  PORT="${MANAGER_API_PORT:-17321}"
6
6
  ADMIN_USER="${MANAGER_ADMIN_USER:-admin}"
7
7
  ADMIN_PASS="${MANAGER_ADMIN_PASS:-pass}"
8
- REPO_URL="${MANAGER_REPO_URL:-https://github.com/Peiiii/moltbot-manager.git}"
9
- VOLUME="${MANAGER_CONFIG_VOLUME:-moltbot-manager-config}"
8
+ REPO_URL="${MANAGER_REPO_URL:-https://github.com/Peiiii/openclaw-manager.git}"
9
+ VOLUME="${MANAGER_CONFIG_VOLUME:-openclaw-manager-config}"
10
10
  GATEWAY_TIMEOUT_MS="${MANAGER_GATEWAY_TIMEOUT_MS:-}"
11
11
 
12
12
  EXTRA_ENV=()
@@ -22,7 +22,7 @@ docker run -d --name "$NAME" -p "${PORT}:${PORT}" \
22
22
  -e MANAGER_ADMIN_PASS="$ADMIN_PASS" \
23
23
  -e MANAGER_API_HOST=0.0.0.0 \
24
24
  -e MANAGER_API_PORT="$PORT" \
25
- -e MANAGER_WEB_DIST=/opt/moltbot-manager/apps/web/dist \
25
+ -e MANAGER_WEB_DIST=/opt/openclaw-manager/apps/web/dist \
26
26
  -e MANAGER_CONFIG_PATH=/etc/clawdbot-manager/config.json \
27
27
  "${EXTRA_ENV[@]}" \
28
28
  -v "$VOLUME":/etc/clawdbot-manager \
@@ -31,11 +31,11 @@ docker run -d --name "$NAME" -p "${PORT}:${PORT}" \
31
31
  apt-get update -y >/dev/null; \
32
32
  apt-get install -y --no-install-recommends git curl ca-certificates >/dev/null; \
33
33
  corepack enable; corepack prepare pnpm@10.23.0 --activate; \
34
- git clone \"$REPO_URL\" /opt/moltbot-manager; \
35
- cd /opt/moltbot-manager; \
34
+ git clone \"$REPO_URL\" /opt/openclaw-manager; \
35
+ cd /opt/openclaw-manager; \
36
36
  CI=true pnpm install >/dev/null; pnpm build >/dev/null; \
37
37
  node apps/api/scripts/create-admin.mjs --username \"\$MANAGER_ADMIN_USER\" --password \"\$MANAGER_ADMIN_PASS\" --config /etc/clawdbot-manager/config.json; \
38
- exec node /opt/moltbot-manager/apps/api/dist/index.js"
38
+ exec node /opt/openclaw-manager/apps/api/dist/index.js"
39
39
 
40
40
  if command -v curl >/dev/null 2>&1; then
41
41
  for _ in {1..120}; do
@@ -3,8 +3,8 @@
3
3
  <head>
4
4
  <meta charset="UTF-8" />
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
- <title>Clawdbot Manager</title>
7
- <script type="module" crossorigin src="/assets/index-BabnD_ew.js"></script>
6
+ <title>OpenClaw Manager</title>
7
+ <script type="module" crossorigin src="/assets/index-C_m7eOq1.js"></script>
8
8
  <link rel="stylesheet" crossorigin href="/assets/index-CBtcOjoT.css">
9
9
  </head>
10
10
  <body>
@@ -1,6 +1,6 @@
1
1
  $ErrorActionPreference = "Stop"
2
2
 
3
- $defaultRepoUrl = "https://github.com/Peiiii/moltbot-manager.git"
3
+ $defaultRepoUrl = "https://github.com/Peiiii/openclaw-manager.git"
4
4
  $repoUrl = $env:MANAGER_REPO_URL
5
5
  $apiPort = if ($env:MANAGER_API_PORT) { $env:MANAGER_API_PORT } else { "17321" }
6
6
  $apiHost = if ($env:MANAGER_API_HOST) { $env:MANAGER_API_HOST } else { "0.0.0.0" }
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env bash
2
2
  set -euo pipefail
3
3
 
4
- DEFAULT_REPO_URL="https://github.com/Peiiii/moltbot-manager.git"
4
+ DEFAULT_REPO_URL="https://github.com/Peiiii/openclaw-manager.git"
5
5
  REPO_URL="${MANAGER_REPO_URL:-$DEFAULT_REPO_URL}"
6
6
  MANAGER_API_PORT="${MANAGER_API_PORT:-17321}"
7
7
  MANAGER_API_HOST="${MANAGER_API_HOST:-0.0.0.0}"
@@ -205,7 +205,7 @@ if command -v systemctl >/dev/null 2>&1 && [[ "${EUID:-$(id -u)}" -eq 0 ]]; then
205
205
  SERVICE_PATH="/etc/systemd/system/clawdbot-manager.service"
206
206
  cat > "$SERVICE_PATH" <<SERVICE
207
207
  [Unit]
208
- Description=Clawdbot Manager API
208
+ Description=OpenClaw Manager API
209
209
  After=network.target
210
210
 
211
211
  [Service]