No description
Find a file
2017-03-15 09:13:41 +01:00
adapters Update RequestAuthenticator.java 2017-03-15 09:13:41 +01:00
authz Bump version to 3.0.0.CR1 2017-01-26 06:18:11 +01:00
boms KEYCLOAK-4195 Keycloak adapter and SPI bom 2017-01-27 12:19:40 +01:00
common Bump version to 3.0.0.CR1 2017-01-26 06:18:11 +01:00
core KEYCLOAK-3729 Ability to run tests within Keycloak server 2017-01-27 12:14:19 +01:00
dependencies Bump version to 3.0.0.CR1 2017-01-26 06:18:11 +01:00
distribution KEYCLOAK-4262 Split migration-domain script into two separate scripts 2017-02-01 14:23:20 -05:00
examples Bump version to 3.0.0.CR1 2017-01-26 06:18:11 +01:00
federation KEYCLOAK-4363 2017-02-01 10:19:15 -05:00
integration KEYCLOAK-4324 Upgrade and unify Aesh version to 0.66.12 2017-01-26 18:08:48 +01:00
misc
model KEYCLOAK-4218 2017-01-31 15:15:49 -05:00
proxy Bump version to 3.0.0.CR1 2017-01-26 06:18:11 +01:00
saml-core KEYCLOAK-4329 Fix NPE when not providing KeyInfo element in IdP initiated SSO SAML 2017-01-30 11:40:48 +01:00
saml-core-api Bump version to 3.0.0.CR1 2017-01-26 06:18:11 +01:00
server-spi KEYCLOAK-4363 2017-02-01 10:19:15 -05:00
server-spi-private Merge pull request #3820 from patriot1burke/master 2017-02-02 11:32:30 +01:00
services Merge pull request #3816 from patriot1burke/master 2017-02-01 08:55:10 -05:00
testsuite KEYCLOAK-4262: Update pom version 2017-02-01 14:38:52 -05:00
themes Bump version to 3.0.0.CR1 2017-01-26 06:18:11 +01:00
util Bump version to 3.0.0.CR1 2017-01-26 06:18:11 +01:00
wildfly KEYCLOAK-4324 Upgrade and unify Aesh version to 0.66.12 2017-01-26 18:08:48 +01:00
.gitattributes
.gitignore
.travis.yml
License.html
pom.xml KEYCLOAK-4195 Keycloak adapter and SPI bom 2017-01-27 12:19:40 +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