From ac66cb4e228245a931a63fddf9cb1cc26585e3ce Mon Sep 17 00:00:00 2001 From: Andrew Moores Date: Tue, 9 Jul 2024 13:54:43 +0100 Subject: [PATCH] AUT-2789: Log user out when they enter their password incorrectly max allowed times. WIP. --- startup.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/startup.sh b/startup.sh index 21c35be63c..acbfc7cdf1 100755 --- a/startup.sh +++ b/startup.sh @@ -65,10 +65,6 @@ test -f .env || usage "Missing .env file" # shellcheck source=/dev/null set -o allexport && source .env && set +o allexport -echo $SESSION_EXPIRY -echo $SESSION_SECRET - - # shellcheck source=./scripts/export_aws_creds.sh source "${DIR}/scripts/export_aws_creds.sh" @@ -82,8 +78,6 @@ if [ "${ACTION_LOCAL:-0}" == "1" ]; then echo "Redis listening on redis://localhost:${REDIS_PORT:-6379}" if [ "${ACTION_DEPS_ONLY:-0}" == "0" ]; then export PORT="${DOCKER_FRONTEND_PORT:-3000}" - export SESSION_SECRET="${SESSION_SECRET:-123456}" - yarn install && yarn test:dev-evironment-variables && yarn copy-assets && yarn dev else docker compose -f docker-compose.yml logs -f