spiff-arena/connector-proxy-demo/bin/run_server_locally
jbirddog dbd1b1b181
Editable dev container for connector proxy demo (#2097)
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.
2024-10-03 12:28:20 -04:00

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