spiffworkflow-backend/bin/run_server_locally

22 lines
607 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
function error_handler() {
>&2 echo "Exited with BAD EXIT CODE '${2}' in ${0} script at line: ${1}."
exit "$2"
}
trap 'error_handler ${LINENO} $?' ERR
set -o errtrace -o errexit -o nounset -o pipefail
2022-05-19 18:38:47 +00:00
if [[ -z "${FLASK_ENV:-}" ]]; then
export FLASK_ENV=development
fi
2022-05-27 18:29:43 +00:00
if [[ -z "${BPMN_SPEC_ABSOLUTE_DIR:-}" ]]; then
script_dir="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
2022-05-27 18:36:43 +00:00
export BPMN_SPEC_ABSOLUTE_DIR="$script_dir/../../sample-process-models"
2022-05-27 18:29:43 +00:00
fi
export FLASK_SESSION_SECRET_KEY=super_secret_key
2022-06-08 14:20:48 +00:00
FLASK_APP=src/spiffworkflow_backend poetry run flask run -p 5010