2022-05-16 20:38:48 +00:00
|
|
|
#!/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-06-03 14:56:07 +00:00
|
|
|
export FLASK_SESSION_SECRET_KEY="this_is_recreate_db_secret_key"
|
|
|
|
|
2022-05-17 20:35:38 +00:00
|
|
|
tasks=""
|
|
|
|
if [[ "${1:-}" == "clean" ]]; then
|
2022-09-08 16:52:28 +00:00
|
|
|
subcommand="${2:-}"
|
|
|
|
if [[ "$subcommand" == "rmall" ]]; then
|
2022-05-20 20:37:23 +00:00
|
|
|
tasks="$tasks init migrate"
|
|
|
|
rm -rf migrations/
|
2022-09-08 16:52:28 +00:00
|
|
|
elif [[ -n "$subcommand" ]]; then
|
|
|
|
>&2 echo "ERROR: you passed a subcommand that was not rmall, and that is not supported: $subcommand"
|
|
|
|
exit 1
|
2022-05-20 20:37:23 +00:00
|
|
|
fi
|
2022-05-16 20:38:48 +00:00
|
|
|
|
2022-06-20 21:39:18 +00:00
|
|
|
rm -f ./src/instance/*.sqlite3
|
2022-06-01 15:17:25 +00:00
|
|
|
mysql -uroot -e "DROP DATABASE IF EXISTS spiffworkflow_backend_development"
|
|
|
|
mysql -uroot -e "DROP DATABASE IF EXISTS spiffworkflow_backend_testing"
|
2022-06-20 22:31:09 +00:00
|
|
|
|
|
|
|
# TODO: check to see if the db already exists and we can connect to it. also actually clean it up.
|
|
|
|
# start postgres in background with one db
|
2022-06-21 02:56:50 +00:00
|
|
|
if [[ "${SPIFF_DATABASE_TYPE:-}" == "postgres" ]]; then
|
2022-06-20 22:31:09 +00:00
|
|
|
if ! docker exec -it postgres-spiff psql -U spiffworkflow_backend spiffworkflow_backend_testing -c "select 1"; then
|
|
|
|
docker run --name postgres-spiff -p 5432:5432 -e POSTGRES_PASSWORD=spiffworkflow_backend -e POSTGRES_USER=spiffworkflow_backend -e POSTGRES_DB=spiffworkflow_backend_testing -d postgres
|
|
|
|
sleep 4 # classy
|
2022-09-20 19:32:43 +00:00
|
|
|
fi
|
|
|
|
if ! docker exec -it postgres-spiff psql -U spiffworkflow_backend spiffworkflow_backend_development -c "select 1"; then
|
|
|
|
# create other db. spiffworkflow_backend_testing came with the docker run.
|
2022-06-20 22:31:09 +00:00
|
|
|
docker exec -it postgres-spiff psql -U spiffworkflow_backend spiffworkflow_backend_testing -c "create database spiffworkflow_backend_development;"
|
|
|
|
fi
|
|
|
|
fi
|
2022-05-17 20:35:38 +00:00
|
|
|
fi
|
2022-05-20 20:37:23 +00:00
|
|
|
tasks="$tasks upgrade"
|
2022-05-17 20:35:38 +00:00
|
|
|
|
2022-06-08 14:07:25 +00:00
|
|
|
mysql -uroot -e "CREATE DATABASE IF NOT EXISTS spiffworkflow_backend_development"
|
|
|
|
mysql -uroot -e "CREATE DATABASE IF NOT EXISTS spiffworkflow_backend_testing"
|
|
|
|
|
2022-06-20 22:31:09 +00:00
|
|
|
for task in $tasks; do
|
2022-10-10 18:27:20 +00:00
|
|
|
SPIFFWORKFLOW_BACKEND_ENV=development FLASK_APP=src/spiffworkflow_backend poetry run flask db "$task"
|
2022-05-16 20:38:48 +00:00
|
|
|
done
|
2022-05-19 18:38:47 +00:00
|
|
|
|
2022-10-10 18:27:20 +00:00
|
|
|
SPIFFWORKFLOW_BACKEND_ENV=testing FLASK_APP=src/spiffworkflow_backend poetry run flask db upgrade
|