Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⬆️ [#50] updated dependecies and fixed broken oidc tests #428

Merged
merged 3 commits into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,328 changes: 2,328 additions & 0 deletions keycloak/data/test-realm.json

Large diffs are not rendered by default.

36 changes: 36 additions & 0 deletions keycloak/docker-compose.keycloak.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Config taken from https://stackoverflow.com/a/77257732
#
# This docker-compose is for development and test purposes. Tests are recorded with
# VCR against this instance.
#
# Log in to http://localhost:8080/admin/master/console/ with `admin`/`admin`
# credentials.
#
# DO NOT USE THIS IN PRODUCTION.
#
# Start a Keycloak instance in your local environment from the parent directory:
#
# docker compose -f docker-compose.keycloak.yml up -d
#

version: '3'

services:
keycloak:
image: quay.io/keycloak/keycloak:23.0
command: start-dev --import-realm
environment:
- KEYCLOAK_ADMIN=admin
- KEYCLOAK_ADMIN_PASSWORD=admin
volumes:
- ./data:/opt/keycloak/data/import
ports:
- 8080:8080
networks:
objects-dev:
aliases:
- keycloak.objects.local

networks:
objects-dev:
name: objects-dev
129 changes: 35 additions & 94 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading