Skip to content
Closed
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
16 changes: 16 additions & 0 deletions blueprints/zeroclaw/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
version: "3.8"
services:
zeroclaw:
image: ghcr.io/zeroclaw-labs/zeroclaw:0.7.1-beta.1049
restart: unless-stopped
environment:
- API_KEY=${API_KEY}
- PROVIDER=${PROVIDER:-openrouter}
- ZEROCLAW_ALLOW_PUBLIC_BIND=true
- ZEROCLAW_GATEWAY_PORT=42617
volumes:
- zeroclaw-data:/zeroclaw-data
expose:
- 42617
volumes:
zeroclaw-data: {}
16 changes: 16 additions & 0 deletions blueprints/zeroclaw/template.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[variables]
main_domain = "${domain}"
api_key = "${password:64}"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Random value used for what may be an external LLM provider key

The template auto-generates a random 64-character string for api_key and injects it as API_KEY. Since PROVIDER is set to openrouter, this variable is almost certainly the user's LLM provider credential — a value only the user possesses. Deploying with a randomly-generated value will cause every instance to fail provider authentication silently. If API_KEY is instead ZeroClaw's own internal gateway token (unrelated to the upstream provider), please clarify this in a comment; otherwise the template should prompt the user to supply their own value rather than auto-generating one.


[config]
env = [
"API_KEY=${api_key}",
"PROVIDER=openrouter",
"ZEROCLAW_ALLOW_PUBLIC_BIND=true",
"ZEROCLAW_GATEWAY_PORT=42617"
]

[[config.domains]]
serviceName = "zeroclaw"
port = 42617
host = "${main_domain}"
Binary file added blueprints/zeroclaw/zeroclaw.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 16 additions & 18 deletions meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -5952,24 +5952,6 @@
"media"
]
},
{
"id": "strapi",
"name": "Strapi",
"version": "v5.33.0",
"description": "Open-source headless CMS to build powerful APIs with built-in content management.",
"logo": "strapi.svg",
"links": {
"github": "https://github.com/strapi/strapi",
"discord": "https://discord.com/invite/strapi",
"docs": "https://docs.strapi.io",
"website": "https://strapi.io"
},
"tags": [
"headless",
"cms",
"content-management"
]
},
{
"id": "supabase",
"name": "SupaBase",
Expand Down Expand Up @@ -6741,6 +6723,22 @@
"alerting"
]
},
{
"id": "zeroclaw",
"name": "ZeroClaw",
"version": "0.7.1-beta.1049",
"description": "Fast, small, and fully autonomous AI personal assistant infrastructure. Deploy anywhere, swap anything. 100% Rust.",
"logo": "zeroclaw.png",
"links": {
"github": "https://github.com/zeroclaw-labs/zeroclaw",
"website": "https://zeroclaw.com/",
"docs": "https://github.com/zeroclaw-labs/zeroclaw#readme"
},
"tags": [
"ai",
"self-hosted"
]
},
{
"id": "zipline",
"name": "Zipline",
Expand Down
Loading