Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.

Expand Down Expand Up @@ -98,7 +98,7 @@ The launchable is split into two stages:
On hosts named like `brev-<env_id>`, the launchable derives:

```text
OpenClaw: https://openclaw0-<env_id>.brevlab.com/chat?session=main
OpenClaw: https://openclaw-<env_id>.brevlab.com/chat?session=main
code-server: https://code-server0-<env_id>.brevlab.com
```

Expand Down Expand Up @@ -140,7 +140,7 @@ OpenClaw Gateway Started
========================

URL:
https://openclaw0-<env_id>.brevlab.com/chat?session=main
https://openclaw-<env_id>.brevlab.com/chat?session=main

API Token:
<token>
Expand All @@ -149,7 +149,7 @@ Hostname:
brev-<env_id>

Origin:
https://openclaw0-<env_id>.brevlab.com
https://openclaw-<env_id>.brevlab.com

code-server:
https://code-server0-<env_id>.brevlab.com
Expand Down
2 changes: 1 addition & 1 deletion configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion launch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down