mirror of
https://github.com/HuangYuChuh/ComfyUI_Skills_OpenClaw.git
synced 2026-07-30 03:23:40 +00:00
Move frontend source code to HuangYuChuh/ComfyUI_Skills_OpenClaw-frontend so that cloning the main repo no longer downloads 1.4M of frontend source. Users only need the pre-built assets in ui/static/. - Remove frontend/ directory (now lives in its own repo) - Add scripts/update_frontend.sh to pull latest release assets - Remove frontend CI job (handled by frontend repo) - Move Gemfile/Gemfile.lock to docs/ and update serve_pages.sh - Clean up .gitignore (remove stale paths and Manus files section) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
20 lines
407 B
Bash
Executable File
20 lines
407 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
|
|
if [[ -x /opt/homebrew/opt/ruby/bin/ruby ]]; then
|
|
export PATH="/opt/homebrew/opt/ruby/bin:$PATH"
|
|
fi
|
|
|
|
cd "$ROOT_DIR/docs"
|
|
|
|
bundle config set --local path "../vendor/bundle"
|
|
bundle install
|
|
bundle exec jekyll serve \
|
|
--source . \
|
|
--destination _site \
|
|
--host 127.0.0.1 \
|
|
--port 4000 \
|
|
--livereload
|