gabriel / musehub public
deploy.md markdown
158 lines 5.8 KB
Raw
sha256:1ccb8409daa5aabe577bd26d11b56ed12f3376d64011d0e75a247e81211a66ee docs(mwp4/phase5): tick Phase 5 checkboxes, close musehub#109 Sonnet 4.6 20 days ago

Deploy Runbook

Two things live here: deploying the MuseHub server and publishing a new Muse CLI build.


Standard release flow

Both repos share the same version string. Bump, deploy server, publish CLI — in that order.

# 1. Bump version in muse/pyproject.toml AND musehub/pyproject.toml, commit each on dev
#    (the bump commit is a simple chore: on a short-lived branch, merged back to dev)

# 2. Push muse source to hub (local + staging)
muse -C ~/ecosystem/muse push local dev
muse -C ~/ecosystem/muse push staging dev

# 3. Deploy MuseHub server first — install.sh is generated from the server's MUSE_VERSION,
#    so the server must be at the new version before the tarball is published
cd ~/ecosystem/musehub
bash deploy/push.sh staging

# 4. Publish the Muse CLI tarball and smoke-test it
bash deploy/publish_muse_release.sh
#    Steps: build sdist → upload S3 → SSM copy to staging → prune old → HTTP check → smoke (18 checks).
#    If smoke fails, the tarball URL is live but broken — investigate before announcing.

# 5. Verify the installer picks up the new version
curl -fsSL https://staging.musehub.ai/install.sh | sh
muse --version   # should print the new version

0 — Build frontend assets (required before deploying MuseHub)

The Docker image copies compiled assets directly from the working tree. app.css and app.js are in .museignore (not committed), so they must be built locally before running push.sh.

cd ~/ecosystem/musehub
npm run build        # compiles src/scss → app.css and src/ts → app.js

Or rebuild only what changed:

npm run build:css    # SCSS only  (src/scss/app.scss → musehub/templates/musehub/static/app.css)
npm run build:js     # TS only    (src/ts/app.ts → musehub/templates/musehub/static/app.js)

Source files to edit (never edit the compiled output directly):

Asset Source
static/app.css src/scss/ — entry point app.scss, partials _*.scss
static/app.js src/ts/ — entry point app.ts
static/embed.css src/scss/embed.scss
static/embed-player.js src/ts/embed-player.ts

During local development, use the watch commands to rebuild automatically on save:

npm run watch:css    # rebuilds app.css on every SCSS change
npm run watch:js     # rebuilds app.js on every TS change

1 — Deploy MuseHub (server)

cd ~/ecosystem/musehub
bash deploy/push.sh staging          # build, push to ECR, blue-green deploy
bash deploy/push.sh prod             # same for prod
bash deploy/push.sh staging prod     # staging then prod in sequence
IMAGE_TAG=<prev-tag> bash deploy/push.sh staging   # rollback to a prior image

push.sh does a full blue-green deploy: builds a Docker image for linux/amd64, pushes it to ECR, starts the inactive slot, health-checks /healthz, switches nginx, and stops the old slot. The image tag is <short-commit-id>-<YYYYMMDDHHMMSS>.

For full infrastructure details (instance IDs, slot switching, SSM recovery) see infrastructure.md.


2 — Publish a new Muse CLI build

cd ~/ecosystem/musehub
bash deploy/publish_muse_release.sh

Must be run after step 1 (server deploy). Reads the version from ~/ecosystem/muse/pyproject.toml automatically.

What it does:

  1. Builds muse-<version>.tar.gz from ~/ecosystem/muse using python3 -m build
  2. Uploads the tarball to s3://musehub-releases/
  3. SSMs into staging and copies it to /data/releases/ on the instance volume
  4. Prunes S3 and the instance to keep only the 3 most recent tarballs
  5. Smoke-tests https://staging.musehub.ai/releases/muse-<version>.tar.gz — exits non-zero on failure

After a successful run, the new version is live and anyone running the installer gets it:

curl -fsSL https://staging.musehub.ai/install.sh | sh

Prerequisites

  • Python 3.14 + build package: pip install build
  • AWS CLI configured with credentials that can write to s3://musehub-releases and send SSM commands to i-07547cd20bee2dea5

Override version label

MUSE_VERSION=0.2.1 bash deploy/publish_muse_release.sh

Useful if you need to re-publish a tarball under a different version label without editing pyproject.toml.


3 — Smoke test the installed CLI

deploy/smoke_muse.sh runs 18 checks against the installed binary. It is called automatically at the end of publish_muse_release.sh, but can be run standalone to verify any staging or prod build:

cd ~/ecosystem/musehub

# Default: staging, version read from ~/ecosystem/muse/pyproject.toml
bash deploy/smoke_muse.sh

# Explicit URL (prod)
bash deploy/smoke_muse.sh --url https://musehub.ai

# Explicit version (re-smoke a prior build)
bash deploy/smoke_muse.sh --version 0.2.0rc13

Exit code 0 = all 18 checks passed. Exit code 1 = one or more checks failed. Exit code 2 = setup error (tarball not found, venv failed).

The checks cover: version, init, add, commit, status, log, read, ls-files, branch, diff, checkout -b, checkout, branch -d, tag add, tag list, verify.


4 — Push benchmarking (manual, not a release gate)

tools/bench_push.py creates real repos on a hub, builds N commits of random content, times the first push and the re-push (all objects already present), then cleans up. Use it to verify push performance after changes to the wire protocol or to reproduce timeout issues.

cd ~/ecosystem/musehub

# Sizes: xs=1c/5f/512B  s=10c/10f/1KB  m=100c/20f/2KB  l=500c/50f/4KB  xl=1000c/100f/8KB
python tools/bench_push.py xs                                # local hub
python tools/bench_push.py --hub https://staging.musehub.ai xs s m

This is not a release gate. It creates real gabriel/bench-* repos on the hub — clean them up afterwards if needed.

File History 2 commits
sha256:1ccb8409daa5aabe577bd26d11b56ed12f3376d64011d0e75a247e81211a66ee docs(mwp4/phase5): tick Phase 5 checkboxes, close musehub#109 Sonnet 4.6 20 days ago
sha256:2c523da45351334b5c4dbefed4dc3dd553b3faa8737a4e6caf301e5dc82141be test(mwp4): Phase 0 RED reproduction tests for RC-4 ordering race Sonnet 4.6 20 days ago