mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-02-05 22:24:56 +00:00
dbd1b1b181
For easier local development and training purposes, this adds an editable dev container for the connector proxy demo as well as a local example connector that can be changed in the live environment without needing to poetry install a connector for another location.
16 lines
409 B
Bash
Executable File
16 lines
409 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
|
|
|
|
if [[ -z "${FLASK_DEBUG:-}" ]]; then
|
|
export FLASK_DEBUG=1
|
|
fi
|
|
|
|
export FLASK_SESSION_SECRET_KEY=super_secret_key
|
|
poetry run flask run -p ${CONNECTOR_PROXY_PORT:-7004} --host=0.0.0.0
|