22 lines
419 B
Bash
Executable File
22 lines
419 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -eu
|
|
|
|
if [ ! -f .env ]; then
|
|
echo "missing .env; copy .env.example and set development values" >&2
|
|
exit 1
|
|
fi
|
|
|
|
set -a
|
|
. ./.env
|
|
set +a
|
|
|
|
docker compose down --volumes --remove-orphans
|
|
docker compose up --build -d --wait
|
|
|
|
npm --prefix e2e ci
|
|
E2E_USERNAME=regular-user \
|
|
E2E_PASSWORD="$REGULAR_USER_PASSWORD" \
|
|
npm --prefix e2e run test:pattern3
|
|
|
|
echo "AP3 BFF session and CSRF behavior verified"
|