No description
Find a file
2016-12-14 17:02:07 +01:00
adapters fixed module names 2016-12-14 17:02:07 +01:00
authz KEYCLOAK-4018 Use clientId and not the client name 2016-12-09 19:33:27 +01:00
common
core
dependencies
distribution
examples fixed module names 2016-12-14 17:02:07 +01:00
federation KEYCLOAK-3921 LDAP binary attributes 2016-12-13 18:31:26 +01:00
integration KEYCLOAK-2806 2016-12-08 16:28:22 -05:00
misc
model KEYCLOAK-3973 2016-12-07 16:10:33 -05:00
proxy fixed module names 2016-12-14 17:02:07 +01:00
saml-core KEYCLOAK-4040 Support a letter-case variant of md:OrganizationURL 2016-12-13 16:07:11 +01:00
saml-core-api KEYCLOAK-4040 Support a letter-case variant of md:OrganizationURL 2016-12-13 16:07:11 +01:00
server-spi [KEYCLOAK-3560]: Unable to import exported users which contain terms_and_conditions required action 2016-12-06 15:29:56 -02:00
server-spi-private Merge pull request #3644 from stianst/KEYCLOAK-4071 2016-12-14 09:55:55 +01:00
services Merge pull request #3644 from stianst/KEYCLOAK-4071 2016-12-14 09:55:55 +01:00
testsuite Merge pull request #3644 from stianst/KEYCLOAK-4071 2016-12-14 09:55:55 +01:00
themes KEYCLOAK-4062 - GUI changes for KeyName format + few tests 2016-12-12 22:29:01 +01:00
util KEYCLOAK-3921 LDAP binary attributes 2016-12-13 18:31:26 +01:00
wildfly
.gitattributes
.gitignore
.travis.yml
License.html
pom.xml
README.md
travis-run-tests.sh restore adapter tests in travis 2016-12-12 10:36:33 -05:00

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/integration/pom.xml exec:java -Pkeycloak-server 

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

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

To stop the server press Ctrl + C.

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