Skip to content

Commit f6d2398

Browse files
committed
Added default token to URL
1 parent 263ba56 commit f6d2398

4 files changed

Lines changed: 986 additions & 795 deletions

File tree

dappnode_package.json

Lines changed: 32 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,36 @@
77
"shortDescription": "Personal AI assistant gateway with multi-LLM support",
88
"description": "OpenClaw is a powerful, self-hosted AI agent gateway that runs on your own devices. It provides a unified interface for interacting with multiple LLM providers (OpenAI, Anthropic Claude, Google Gemini, local models via Ollama). Features include:\n\n- **Web UI & API**: Full-featured web interface at port 18789\n- **Multi-Channel Messaging**: WhatsApp, Telegram, Slack, Discord, Matrix, and more\n- **Agent Orchestration**: Claude AI integration with tool use and autonomous agents\n- **Code Execution**: Sandboxed environment for running code\n- **Canvas UI**: Visual interactions and image generation\n- **Voice Support**: Text-to-speech and speech-to-text capabilities\n\nRun your own AI infrastructure with full control over your data and API keys.",
99
"type": "service",
10-
"architectures": ["linux/amd64", "linux/arm64"],
10+
"architectures": [
11+
"linux/amd64",
12+
"linux/arm64"
13+
],
1114
"mainService": "gateway",
1215
"author": "DAppNode Association <admin@dappnode.io>",
1316
"license": "Apache-2.0",
14-
"categories": ["Developer tools", "Communications"],
15-
"keywords": ["ai", "llm", "chatgpt", "claude", "openai", "anthropic", "agent", "gateway", "self-hosted", "telegram", "discord", "whatsapp"],
17+
"categories": [
18+
"Developer tools",
19+
"Communications"
20+
],
21+
"keywords": [
22+
"ai",
23+
"llm",
24+
"chatgpt",
25+
"claude",
26+
"openai",
27+
"anthropic",
28+
"agent",
29+
"gateway",
30+
"self-hosted",
31+
"telegram",
32+
"discord",
33+
"whatsapp"
34+
],
1635
"links": {
1736
"homepage": "https://openclaw.ai",
18-
"ui": "http://gateway.openclaw.public.dappnode:18789",
19-
"api": "http://gateway.openclaw.public.dappnode:18789/api",
20-
"terminal": "http://gateway.openclaw.public.dappnode:7681",
21-
"setup-wizard": "http://gateway.openclaw.public.dappnode:8080",
37+
"ui": "http://openclaw.public.dappnode:18789?token=openclaw",
38+
"terminal": "http://openclaw.public.dappnode:7681",
39+
"setup-wizard": "http://openclaw.public.dappnode:8080",
2240
"docs": "https://docs.openclaw.ai"
2341
},
2442
"repository": {
@@ -66,8 +84,12 @@
6684
],
6785
"globalEnvs": [
6886
{
69-
"envs": ["ACTIVE"],
70-
"services": ["gateway"]
87+
"envs": [
88+
"ACTIVE"
89+
],
90+
"services": [
91+
"gateway"
92+
]
7193
}
7294
],
7395
"warnings": {
@@ -77,4 +99,4 @@
7799
"featuredBackground": "linear-gradient(135deg, #667eea 0%, #764ba2 100%)",
78100
"featuredColor": "white"
79101
}
80-
}
102+
}

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ services:
66
dockerfile: Dockerfile
77
args:
88
UPSTREAM_VERSION: "latest"
9-
image: "gateway.openclaw.public.dappnode.eth:0.1.0"
10-
container_name: DAppNodePackage-gateway.openclaw.public.dappnode.eth
9+
image: "openclaw.public.dappnode.eth:0.1.0"
10+
container_name: DAppNodePackage-openclaw.public.dappnode.eth
1111
restart: unless-stopped
1212
environment:
1313
HOME: /home/node

getting-started.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ Self-hosted AI gateway for DappNode
66

77
## Quick Links
88

9-
- **[Open Setup Wizard](http://gateway.openclaw.public.dappnode:8080)** — Pick your AI provider, enter your API key, and start chatting in minutes.
10-
- **[Web UI](http://gateway.openclaw.public.dappnode:18789)** — Chat with AI models in your browser.
11-
- **[Terminal](http://gateway.openclaw.public.dappnode:7681)** — Shell access inside the container.
9+
- **[Open Setup Wizard](http://openclaw.public.dappnode:8080)** — Pick your AI provider, enter your API key, and start chatting in minutes.
10+
- **[Web UI](http://openclaw.public.dappnode:18789)** — Chat with AI models in your browser.
11+
- **[Terminal](http://openclaw.public.dappnode:7681)** — Shell access inside the container.
1212

1313
---
1414

@@ -30,7 +30,7 @@ Telegram · Discord · Slack · WhatsApp · Matrix · Web UI
3030

3131
## API Access
3232

33-
OpenClaw exposes an OpenAI-compatible API at `http://gateway.openclaw.public.dappnode:18789/api`. Use your gateway token for authentication.
33+
OpenClaw exposes an OpenAI-compatible API at `http://openclaw.public.dappnode:18789/api`. Use your gateway token for authentication.
3434

3535
---
3636

@@ -43,4 +43,4 @@ OpenClaw exposes an OpenAI-compatible API at `http://gateway.openclaw.public.dap
4343
| **Bot not responding** | Verify bot tokens and permissions. Check logs via the terminal. |
4444
| **Debug from terminal** | Open the web terminal and run: `openclaw doctor` |
4545

46-
---
46+
---

0 commit comments

Comments
 (0)