No description
Find a file
2017-01-18 10:29:06 +01:00
adapters Merge pull request #3727 from hmlnarik/KEYCLOAK-4141 2017-01-12 08:49:29 -05:00
authz KEYCLOAK-4157 Move drools-bom from keycloak-parent 2017-01-12 13:58:56 +01:00
common Bump version to 2.5.1.Final-SNAPSHOT 2016-12-22 08:22:18 +01:00
core KEYCLOAK-4176 2017-01-10 08:02:49 +01:00
dependencies KEYCLOAK-4157 Move drools-bom from keycloak-parent 2017-01-12 13:58:56 +01:00
distribution KEYCLOAK-4101: Fix pom 2017-01-10 07:37:40 -05:00
examples Merge pull request #3652 from little-headbanger/KEYCLOAK-4088_Http_wrapper_of_Angular_2_demo_app_doesn't_forward_http_errors 2017-01-05 13:19:36 +01:00
federation Merge pull request #3731 from mposolda/master 2017-01-10 09:49:18 +01:00
integration KEYCLOAK-4201 Offline tokens become useless when accessing admin REST API 2017-01-13 09:06:53 +01:00
misc KEYCLOAK-3857 Clustered invalidation cache fixes and refactoring. Support for cross-DC for invalidation caches. 2016-11-16 22:29:23 +01:00
model Merge pull request #3666 from hmlnarik/KEYCLOAK-4072-User-ID-from-User-Storage-Provider-too-long-for-Offline-User-Session 2017-01-13 09:39:45 -05:00
proxy Bump version to 2.5.1.Final-SNAPSHOT 2016-12-22 08:22:18 +01:00
saml-core Merge pull request #3715 from hmlnarik/KEYCLOAK-4160 2017-01-09 12:50:38 +01:00
saml-core-api Bump version to 2.5.1.Final-SNAPSHOT 2016-12-22 08:22:18 +01:00
server-spi KEYCLOAK-4220 2017-01-13 11:45:48 -05:00
server-spi-private KEYCLOAK-4220 2017-01-13 11:45:48 -05:00
services KEYCLOAK-4167 Always use preset key for verification if key ID not set 2017-01-18 10:29:06 +01:00
testsuite KEYCLOAK-4167 Always use preset key for verification if key ID not set 2017-01-18 10:29:06 +01:00
themes KEYCLOAK-4167 Always use preset key for verification if key ID not set 2017-01-18 10:29:06 +01:00
util Bump version to 2.5.1.Final-SNAPSHOT 2016-12-22 08:22:18 +01:00
wildfly Bump version to 2.5.1.Final-SNAPSHOT 2016-12-22 08:22:18 +01:00
.gitattributes KEYCLOAK-1385 Introduce end-of-line normalization 2015-07-17 13:46:51 +02:00
.gitignore KEYCLOAK-4101: jboss-cli script to do migration of configuration 2017-01-09 18:15:26 -05:00
.travis.yml Cleanup of tests including groups for Travis 2017-01-03 07:52:00 +01:00
License.html distro 2014-01-07 14:37:50 -05:00
pom.xml Merge pull request #3693 from ssilvert/config-migration-2 2017-01-16 09:37:01 +01:00
README.md fixed maven prereq version to match pom 2016-11-13 12:24:01 -05:00
travis-run-tests.sh Cleanup of tests including groups for Travis 2017-01-03 07:52:00 +01: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