mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-01-12 02:24:15 +00:00
bc3708bb00
* added async and sync support for the message start api w/ burnettk * removed debug dump call w/ burnettk --------- Co-authored-by: jasquat <jasquat@users.noreply.github.com>
17 lines
568 B
Bash
Executable File
17 lines
568 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
function error_handler() {
|
|
echo >&2 "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
|
|
|
|
export SPIFFWORKFLOW_BACKEND_CELERY_ENABLED=true
|
|
export SPIFFWORKFLOW_BACKEND_RUN_BACKGROUND_SCHEDULER_IN_CREATE_APP=false
|
|
|
|
# so we can raise if calling unsafe code in celery
|
|
export SPIFFWORKFLOW_BACKEND_RUNNING_IN_CELERY_WORKER=true
|
|
|
|
poetry run celery -A src.spiffworkflow_backend.background_processing.celery_worker worker --loglevel=info
|