From 381f827aea0e8f94feafbdcaf78113ea85bce092 Mon Sep 17 00:00:00 2001 From: jbirddog <100367399+jbirddog@users.noreply.github.com> Date: Fri, 26 May 2023 13:58:28 -0400 Subject: [PATCH] Editor path (#280) --- bin/run_editor | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/run_editor b/bin/run_editor index a95faf1be..86d525fb2 100755 --- a/bin/run_editor +++ b/bin/run_editor @@ -22,7 +22,10 @@ fi SPIFF_EDITOR_BPMN_SPEC_DIR=$1 \ docker compose -f editor.docker-compose.yml up -d +SPIFF_EDITOR_BASE_URL="${SPIFFWORKFLOW_BACKEND_URL_FOR_FRONTEND:-http://localhost:${SPIFFWORKFLOW_FRONTEND_PORT:-8001}}" +SPIFF_EDITOR_URL_PATH="${SPIFF_EDITOR_URL_PATH:-/admin/process-groups}" + echo "" echo "Spiff Editor is ready." echo "" -echo "Please open ${SPIFFWORKFLOW_BACKEND_URL_FOR_FRONTEND:-http://localhost:${SPIFFWORKFLOW_FRONTEND_PORT:-8001}}" +echo "Please open ${SPIFF_EDITOR_BASE_URL}${SPIFF_EDITOR_URL_PATH}"