feat(ap1): add vanilla SPA PKCE login

This commit is contained in:
donghyeon-ka
2026-07-25 14:09:03 +09:00
parent e2fba41f56
commit c1fae6137c
15 changed files with 951 additions and 13 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/usr/bin/env sh
set -eu
if [ ! -f .env ]; then
echo "missing .env; copy .env.example and set local-only 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:pattern1
echo "AP1 verified end to end"