No description
Find a file
2019-01-03 14:29:15 +01:00
.travis
adapters Fix on type for KeycloakInstance.realmAccess and KeycloakInstance.ressourceAccess 2018-12-13 19:03:47 +01:00
authz
boms
common
core KEYCLOAK-9089 IllegalArgumentException when trying to use ES256 as OIDC access token signature 2018-12-14 21:01:03 +01:00
dependencies [KECLOAK-8237] - Openshift Client Storage 2018-12-06 10:57:53 -02:00
distribution KEYCLOAK-9029: generated licence files using distribution/licenses-common/update-licenses.sh 2018-12-17 08:11:08 +01:00
examples [KEYCLOAK-8811] Remove duplicated examples from Keycloak codebase 2018-12-11 08:43:48 +01:00
federation KEYCLOAK-7990 Use attribute name from config on LDAP group creation 2018-12-13 07:53:09 +01:00
integration
misc Moved logo to separate repo 2018-12-04 16:58:09 +01:00
model KEYCLOAK-8904 Backpressure in RemoteCacheSessionsLoader 2018-12-10 22:49:43 +01:00
proxy
saml-core
saml-core-api
server-spi KEYCLOAK-9050 Change LoginProtocol.authenticated to read most of the values from authenticationSession 2018-12-12 13:30:03 +01:00
server-spi-private KEYCLOAK-9089 IllegalArgumentException when trying to use ES256 as OIDC access token signature 2018-12-14 21:01:03 +01:00
services KEYCLOAK-9182 2019-01-03 14:28:35 +01:00
testsuite KEYCLOAK-9182 2019-01-03 14:28:35 +01:00
themes Update messages_no.properties 2019-01-02 13:53:35 +01:00
util
wildfly
.gitattributes
.gitignore
.travis.yml
ADOPTERS.md List of adopters and contributors (#5709) 2018-11-15 08:14:38 +01:00
License.html
pom.xml KEYCLOAK-9162 2019-01-03 14:29:15 +01:00
prod-arguments.json
README.md
set-version.sh
travis-run-tests.sh

Keycloak

Open Source Identity and Access Management for modern Applications and Services.

For more information about Keycloak visit Keycloak homepage and Keycloak blog.

Building

Ensure you have JDK 8 (or newer), Maven 3.1.1 (or newer) and Git installed

java -version
mvn -version
git --version

First clone the Keycloak repository:

git clone https://github.com/keycloak/keycloak.git
cd keycloak

To build Keycloak run:

mvn install

This will build all modules and run the testsuite.

To build the distribution run:

mvn install -Pdistribution

Once completed you will find distribution archives in distribution.

To build only the server run:

mvn -Pdistribution -pl distribution/server-dist -am -Dmaven.test.skip clean install

Starting Keycloak

To start Keycloak during development first build as specified above, then run:

mvn -f testsuite/utils/pom.xml exec:java -Pkeycloak-server 

When running testsuite, by default an account with username admin and password admin will be created within the master realm at start.

To start Keycloak from the server distribution first build the distribution it as specified above, then run:

tar xfz distribution/server-dist/target/keycloak-<VERSION>.tar.gz
cd keycloak-<VERSION>
bin/standalone.sh

To stop the server press Ctrl + C.

Reporting security vulnerabilities

If you've found a security vulnerability, please look at the instructions on how to properly report it

Help and Documentation

  • Documentation - User Guide, Admin REST API and Javadocs
  • User Mailing List - Mailing list to ask for help and general questions about Keycloak
  • JIRA - Issue tracker for bugs and feature requests

Contributing

License