Skip to content

Commit

Permalink
Implement the KEYCLOAK Steward
Browse files Browse the repository at this point in the history
  • Loading branch information
foretspaisibles committed Aug 13, 2024
1 parent f961689 commit 517af09
Show file tree
Hide file tree
Showing 7 changed files with 896 additions and 33 deletions.
7 changes: 5 additions & 2 deletions org.melusina.cid.asd
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
:license "MIT License"
:depends-on (#:alexandria
#:cl-ppcre
#:drakma
#:flexi-streams
#:ironclad
#:yason)
Expand All @@ -34,7 +35,8 @@
(:module "stewards"
:components ((:file "simulator")
(:file "local-filesystem-subtree")
(:file "docker-engine")))
(:file "docker-engine")
(:file "keycloak")))
(:file "entry-point")))))

(asdf:defsystem #:org.melusina.cid/poc
Expand Down Expand Up @@ -136,7 +138,8 @@
(:module "stewards"
:components ((:file "simulator")
(:file "local-filesystem-subtree")
(:file "docker-engine")))
(:file "docker-engine")
(:file "keycloak")))
(:file "poc")))
(:module "libexec"
:components
Expand Down
16 changes: 16 additions & 0 deletions src/package.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,22 @@
#:make-docker-volume
#:docker-project
#:make-docker-project
;; Keycloak
#:keycloak-admin
#:make-keycloak-admin
#:get-keycloak-admin-token
#:keycloak-realm
#:make-keycloak-realm
#:realm
#:displayname
#:displayname-html
#:enabled
#:brute-force-protected
#:registration
#:login-with-email
#:duplicate-emails
#:reset-password
#:edit-username
))

(in-package #:org.melusina.cid)
Expand Down
Loading

0 comments on commit 517af09

Please sign in to comment.