Scripts used by the SetMeld Pod project.
create-deploy-package.js— Builds the Docker Compose deployment tarball. Runnpm run deploy:package(which runsnpm run buildthen this script). Producesbuild/fedresda-node-deploy-<version>.tar.gz.version.sh— Version management: get/set/bump version inversion.jsonandpackage.json, and sync dependency URLs in config.
# Create the deployment package (build + tarball)
npm run deploy:package
# Version
npm run version:get
npm run version:set 1.0.0
npm run version:bump patchDeployment is done by extracting the tarball and using Docker Compose; see deploy/README.md.