webclaw-dashboard-server 1.5.4 → 1.5.6
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/README.md +39 -0
- package/dist/dashboard-server.jsc +0 -0
- package/package.json +3 -3
package/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# webclaw-dashboard-server
|
|
2
|
+
|
|
3
|
+
Dashboard and reverse proxy server for WebClaw Docker containers.
|
|
4
|
+
|
|
5
|
+
## Configuration
|
|
6
|
+
|
|
7
|
+
All settings can be provided via **config file** (`/home/ubuntu/.webclaw/config.json`) or **environment variables**. Config file takes priority.
|
|
8
|
+
|
|
9
|
+
| Variable | Env | Default | Description |
|
|
10
|
+
|---|---|---|---|
|
|
11
|
+
| `AUTH_USER` | `AUTH_USER` | `admin` | Dashboard login username |
|
|
12
|
+
| `AUTH_PASSWORD` | `AUTH_PASSWORD` | `changeme` | Dashboard login password |
|
|
13
|
+
| `VNC_PASSWORD` | `VNC_PASSWORD` | `changeme` | noVNC desktop password |
|
|
14
|
+
| `OPENCLAW_GATEWAY_TOKEN` | `OPENCLAW_GATEWAY_TOKEN` | `changeme` | OpenClaw gateway auth token |
|
|
15
|
+
| `GIT_USER_NAME` | `GIT_USER_NAME` | *(empty)* | Git commit author name |
|
|
16
|
+
| `GIT_USER_EMAIL` | `GIT_USER_EMAIL` | *(empty)* | Git commit author email |
|
|
17
|
+
| `CF_TUNNEL_TOKEN` | `CF_TUNNEL_TOKEN` | *(empty)* | Cloudflare Tunnel token |
|
|
18
|
+
| `ENABLE_OPENCLAW` | `ENABLE_OPENCLAW` | `true` | Show/hide OpenClaw tab |
|
|
19
|
+
| `HIDE_BRANDING` | `HIDE_BRANDING` | `false` | Hide download banner and disable logo link when `true` |
|
|
20
|
+
|
|
21
|
+
### config.json example
|
|
22
|
+
|
|
23
|
+
```json
|
|
24
|
+
{
|
|
25
|
+
"AUTH_USER": "admin",
|
|
26
|
+
"AUTH_PASSWORD": "my-secret",
|
|
27
|
+
"HIDE_BRANDING": "true"
|
|
28
|
+
}
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Quick Start
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
npm install
|
|
35
|
+
npm run build
|
|
36
|
+
npm start
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Server listens on port **20000** by default.
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webclaw-dashboard-server",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.6",
|
|
4
4
|
"description": "Dashboard server and proxy for webclaw browser dev environment",
|
|
5
5
|
"bin": {
|
|
6
6
|
"webclaw-dashboard-server": "./bin/start.js",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"http-proxy": "^1.18.1"
|
|
22
22
|
},
|
|
23
23
|
"optionalDependencies": {
|
|
24
|
-
"webclaw-dashboard-server-linux-arm64": "1.5.
|
|
25
|
-
"webclaw-dashboard-server-linux-x64": "1.5.
|
|
24
|
+
"webclaw-dashboard-server-linux-arm64": "1.5.6",
|
|
25
|
+
"webclaw-dashboard-server-linux-x64": "1.5.6"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {},
|
|
28
28
|
"engines": {
|