No description
Find a file
Stian Thorgersen 264e81efb2 Merge pull request #3790 from stianst/KEYCLOAK-4259
KEYCLOAK-4259 Add top-margin to container to prevent overlay with logo
2017-01-24 09:36:11 +01:00
adapters [KEYCLOAK-3261] - Properly handle apps deployed at the ROOT context 2017-01-23 21:27:43 -02:00
authz [KEYCLOAK-4203] - Removing references to Drools 2017-01-18 12:44:30 -02: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-4252 Update server-overlay assembly 2017-01-18 12:29:39 +01:00
examples [KEYCLOAK-3261] - Properly handle apps deployed at the ROOT context 2017-01-23 21:27:43 -02:00
federation KEYCLOAK-4269 2017-01-23 13:36:54 +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 KEYCLOAK-4274 Fix recursive composite role mappings 2017-01-23 17:55:45 +01: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-2333 LDAP/MSAD password policies are not used when user changes password 2017-01-17 21:06:09 +01:00
server-spi-private KEYCLOAK-4274 Fix recursive composite role mappings 2017-01-23 17:55:45 +01:00
services Merge pull request #3752 from mposolda/master 2017-01-23 16:25:35 +01:00
testsuite KEYCLOAK-4273 Fix failing MSAD tests 2017-01-23 22:29:13 +01:00
themes KEYCLOAK-4259 Add top-margin to container to prevent overlay with logo 2017-01-24 09:35:57 +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