From 51813affbac0ee7c781b413522f440cd4aeecec1 Mon Sep 17 00:00:00 2001 From: Stephanie Ahart Date: Tue, 30 Jun 2026 09:33:52 -0700 Subject: [PATCH] Fix OpenClaw origin --- README.md | 12 ++++++------ configure.sh | 2 +- launch.sh | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 71eed6e..562bddc 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ To generate an API key, visit [build.nvidia.com/settings/api-keys](https://build ======================== URL: - https://openclaw0-xxxxxxxx.brevlab.com/#token=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx + https://openclaw-xxxxxxxx.brevlab.com/#token=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx API Token: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx @@ -47,10 +47,10 @@ To generate an API key, visit [build.nvidia.com/settings/api-keys](https://build brev-xxxxxxxx Origin: - https://openclaw0-xxxxxxxx.brevlab.com + https://openclaw-xxxxxxxx.brevlab.com ``` -1. Copy the full URL (looks like `https://openclaw0-xxxxxxxx.brevlab.com/#token=xxx...`) and open it in a new tab. +1. Copy the full URL (looks like `https://openclaw-xxxxxxxx.brevlab.com/#token=xxx...`) and open it in a new tab. 1. Click the "Connect" button to open the OpenClaw chat interface. You may need to click this button more than once. 1. Start chatting with the agent. @@ -98,7 +98,7 @@ The launchable is split into two stages: On hosts named like `brev-`, the launchable derives: ```text -OpenClaw: https://openclaw0-.brevlab.com/chat?session=main +OpenClaw: https://openclaw-.brevlab.com/chat?session=main code-server: https://code-server0-.brevlab.com ``` @@ -140,7 +140,7 @@ OpenClaw Gateway Started ======================== URL: -https://openclaw0-.brevlab.com/chat?session=main +https://openclaw-.brevlab.com/chat?session=main API Token: @@ -149,7 +149,7 @@ Hostname: brev- Origin: -https://openclaw0-.brevlab.com +https://openclaw-.brevlab.com code-server: https://code-server0-.brevlab.com diff --git a/configure.sh b/configure.sh index 87d29f5..3071f5b 100755 --- a/configure.sh +++ b/configure.sh @@ -218,7 +218,7 @@ derive_openclaw_origin() { env_id="$(printf '%s\n' "$host_name" | sed -E 's/^brev-([[:alnum:]]+)$/\1/')" if [[ -n "$env_id" && "$env_id" != "$host_name" ]]; then - printf 'https://openclaw0-%s.brevlab.com\n' "$env_id" + printf 'https://openclaw-%s.brevlab.com\n' "$env_id" else printf 'http://localhost:3000\n' fi diff --git a/launch.sh b/launch.sh index 0c909e4..c441568 100755 --- a/launch.sh +++ b/launch.sh @@ -146,7 +146,7 @@ derive_openclaw_origin() { env_id="$(printf '%s\n' "$host_name" | sed -E 's/^brev-([[:alnum:]]+)$/\1/')" if [[ -n "$env_id" && "$env_id" != "$host_name" ]]; then - printf 'https://openclaw0-%s.brevlab.com\n' "$env_id" + printf 'https://openclaw-%s.brevlab.com\n' "$env_id" else printf 'http://localhost:3000\n' fi