Go to file
2023-08-17 22:36:36 +00:00
src Add CORS headers. 2023-08-17 17:02:19 -05:00
.eslintignore Initial commit 2023-08-14 23:22:02 -05:00
.eslintrc Initial commit 2023-08-14 23:22:02 -05:00
.gitignore Initial commit 2023-08-14 23:22:02 -05:00
Dockerfile Initial commit 2023-08-14 23:22:02 -05:00
LICENSE Initial commit 2023-08-14 23:22:02 -05:00
package.json Initial commit 2023-08-14 23:22:02 -05:00
README.md Update README.md 2023-08-17 22:36:36 +00:00
run.sh Initial commit 2023-08-14 23:22:02 -05:00
tsconfig.json Initial commit 2023-08-14 23:22:02 -05:00
yarn.lock Initial commit 2023-08-14 23:22:02 -05:00

keycloak-reg-api

Simple API for self-registration of Keycloak accounts that use API keys.

Building

Local

$ yarn install
$ CERC_KCUSERREG_API_URL=http://my.keycloak.url:8080/auth yarn dev

Docker

$ docker build -t cerc/keycloak-reg-api:local .
$ docker run \
    -e CERC_KCUSERREG_API_URL=http://my.keycloak.url:8080/auth \
    -p 9292 cerc/keycloak-reg-api:local