No description
Find a file
2017-12-20 15:00:07 +01:00
adapters KEYCLOAK-6066 Be less strict when handling cookies 2017-12-19 21:39:41 +01:00
authz KEYCLOAK-6018 Create BOM for Drools dependencies 2017-12-14 14:51:25 +01:00
boms
common KEYCLOAK-5666 removed not needed decodeToObject methods 2017-12-18 19:19:00 +01:00
core KEYCLOAK-2120 Added manual setup page for OTP 2017-12-18 11:20:20 +01:00
dependencies KEYCLOAK-6018 Create BOM for Drools dependencies 2017-12-14 14:51:25 +01:00
distribution KEYCLOAK-6051 Fix licenses 2017-12-19 08:20:29 +01:00
examples
federation
integration KEYCLOAK-4853 Introduce dedicated utility for parsing ID from URI 2017-12-20 15:00:07 +01:00
misc
model KEYCLOAK-5172 Set oidc as default protocol to clients 2017-12-20 13:38:12 +01:00
proxy
saml-core
saml-core-api KEYCLOAK-5666 removed not needed decodeToObject methods 2017-12-18 19:19:00 +01:00
server-spi KEYCLOAK-2120 Added manual setup page for OTP 2017-12-18 11:20:20 +01:00
server-spi-private KEYCLOAK-5172 Set oidc as default protocol to clients 2017-12-20 13:38:12 +01:00
services KEYCLOAK-5443 Fix update user account when both email as username and edit username are enabled 2017-12-20 14:40:03 +01:00
testsuite KEYCLOAK-6067 Allow http for performance testsuite realms 2017-12-20 14:56:42 +01:00
themes Merge pull request #4873 from pedroigor/master 2017-12-20 08:53:50 -02:00
util
wildfly
.gitattributes
.gitignore
.travis.yml
License.html
pom.xml [KEYCLOAK-6023] - Upgrading Drools to 6.5.0.Final 2017-12-15 10:22:05 -02:00
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.

Starting Keycloak

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

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

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