No description
Find a file
2016-12-19 20:28:49 -02:00
adapters Merge pull request #3647 from tkyjovsk/fix-module-names 2016-12-16 08:41:01 -05:00
authz [KEYCLOAK-4034] - Improvements to UI, performance and some code cleanup 2016-12-19 11:22:37 -02:00
common KEYCLOAK-4092 key provider for HMAC signatures 2016-12-19 10:50:43 +01:00
core Merge pull request #3662 from pedroigor/KEYCLOAK-4034 2016-12-19 16:49:10 -02:00
dependencies
distribution
examples LDAP polishing 2016-12-19 18:11:23 +01:00
federation LDAP polishing 2016-12-19 18:11:23 +01:00
integration Merge pull request #3662 from pedroigor/KEYCLOAK-4034 2016-12-19 16:49:10 -02:00
misc
model [KEYCLOAK-4034] - Invalidating policy cache when creating resources and scopes 2016-12-19 20:28:49 -02:00
proxy
saml-core
saml-core-api
server-spi Merge pull request #3630 from sldab/duplicate-email-support 2016-12-19 15:37:18 +01:00
server-spi-private [KEYCLOAK-4034] - Invalidating policy cache when creating resources and scopes 2016-12-19 20:28:49 -02:00
services [KEYCLOAK-4034] - Invalidating policy cache when creating resources and scopes 2016-12-19 20:28:49 -02:00
testsuite Merge pull request #3662 from pedroigor/KEYCLOAK-4034 2016-12-19 16:49:10 -02:00
themes Merge pull request #3662 from pedroigor/KEYCLOAK-4034 2016-12-19 16:49:10 -02:00
util
wildfly KEYCLOAK-4002: realmRevisions cache too small with high number of realms. 2016-12-05 08:07:24 -05:00
.gitattributes
.gitignore
.travis.yml
License.html
pom.xml KEYCLOAK-912 Admin CLI 2016-12-19 01:05:03 +01:00
README.md
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/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