No description
Find a file
Stan Silvert cc9c8d8ca1 Merge pull request #3781 from ssilvert/logo-padding
KEYCLOAK-4259: Login page rendering broken
2017-01-20 18:02:16 -05:00
adapters KEYCLOAK-4222 Remove slash from state parameter 2017-01-19 20:11:18 +01: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-4203] - Removing references to Drools 2017-01-18 12:44:30 -02:00
federation KEYCLOAK-2403 Cannot create user in LDAP/AD from Keycloak using Full Name User Federation Mapper 2017-01-20 21:08:26 +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 #3770 from patriot1burke/master 2017-01-19 07:35:10 -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-2333 LDAP/MSAD password policies are not used when user changes password 2017-01-17 21:06:09 +01:00
server-spi-private [KEYCLOAK-4203] - Removing references to Drools 2017-01-18 12:44:30 -02:00
services Merge pull request #3757 from mstruk/KEYCLOAK-4150 2017-01-19 13:55:36 +01:00
testsuite KEYCLOAK-2403 Cannot create user in LDAP/AD from Keycloak using Full Name User Federation Mapper 2017-01-20 21:08:26 +01:00
themes KEYCLOAK-4259: Login page rendering broken 2017-01-20 16:07:36 -05: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
.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
pom.xml Merge pull request #3693 from ssilvert/config-migration-2 2017-01-16 09:37:01 +01:00
README.md
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