mirror of
https://github.com/tiennm99/goclaw.git
synced 2026-06-10 06:10:46 +00:00
9429a7c844
* feat(ci): add node/python/full runtime variants to Docker publish Add runtime image variants alongside existing build-tag variants: - :node (pre-installed Node.js) - :python (pre-installed Python) - :full (Node.js + Python + all skill deps) * feat(ci): add install scripts, release binaries, and Discord notifications - scripts/install.sh: one-liner binary installer from GitHub Releases - scripts/setup-docker.sh: interactive Docker setup with variant selection (alpine/node/python/full), auto-generates .env + docker-compose.yaml with persistent volumes for data, skills, workspace, storage - release.yaml: build cross-platform binaries (linux/darwin × amd64/arm64) and attach to GitHub Release, notify Discord on new releases - .gitignore: ignore Apple Double (._*) files from external volumes * docs(docker): add pre-built image references and update docker-compose workflows - Add `image:` directives to docker-compose.yml, docker-compose.selfservice.yml, and docker-compose.upgrade.yml pointing to ghcr.io/nextlevelbuilder/goclaw pre-built images - Add Docker Hub mirror references (digitop/goclaw) for public access - Document available image tags (latest, node, python, full, otel, tsnet, redis) with descriptions - Update README with pre-built image pull instructions and semver tag examples - Clarify deployment workflows: use pre-built images by default (no --build), add --build only when building from source - Update upgrade workflow to pull pre-built images instead of rebuild - Add note about build args requirement for otel/tsnet/redis overlays - Update .dockerignore to exclude macOS temp files (._*) * fix(ci): use claude_code_oauth_token instead of anthropic_api_key
49 lines
478 B
Plaintext
49 lines
478 B
Plaintext
# Test artifacts
|
|
tests/integration/testdata/
|
|
|
|
# Binary
|
|
openclaw-go
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
|
|
# OS
|
|
.DS_Store
|
|
._*
|
|
|
|
# Environment
|
|
.env*
|
|
!.env.example
|
|
|
|
app
|
|
browser-poc
|
|
openclaw-go
|
|
goclaw
|
|
/config.json
|
|
prompt.md
|
|
*.bk.*
|
|
|
|
# UI Web (React SPA)
|
|
ui/web/node_modules/
|
|
ui/web/dist/
|
|
ui/web/.vite/
|
|
*.tsbuildinfo
|
|
|
|
.mcp.json
|
|
tmp
|
|
.claude/
|
|
|
|
deploy-*.sh
|
|
|
|
docs/technical-diaries
|
|
docs/zuey
|
|
plans
|
|
release-manifest.json
|
|
k8s-*/*
|
|
|
|
# Test credentials (never commit)
|
|
tests/**/creds.json
|
|
ui/simple-saas
|
|
*.tar
|