Skip to content

Deploy with CLI

Valentin Ryckaert edited this page Jul 22, 2026 · 2 revisions

Setup hept.sh

Fill required infos in hept.sh

readonly HEP_TRAINING_PATH="/path/to/your/hep-training/repo"
readonly GITHUB_USERNAME="GITHUB_USERNAME"
readonly IMAGE_NAME="IMAGE_NAME"
readonly IMAGE_TAG="IMAGE_TAG"
readonly DOCKER_REGISTRY="ghcr.io"
readonly IMAGE_FULL="$DOCKER_REGISTRY/$GITHUB_USERNAME/$IMAGE_NAME:$IMAGE_TAG"

Make the script executable

chmod +x ./hept.sh

Setup your configuration

Copy your files from your HEP-training folder

./hept crc # stands for Copy Ruby-on-rails Config

Adapt files to deployment

  • solr-service and redis-service instead of solr and redis in .env
  • change the URLs in tess.yml and .env

Install

./hept install

Upgrade

./hept upgrade

Uninstall

./hept uninstall

Clone this wiki locally