No description
Find a file
Stian Thorgersen cc27dd485b Merge pull request #4083 from knutz3n/KEYCLOAK-4780
KEYCLOAK-4780 Ensure Base64 encoded HMAC secret key is decoded before use
2017-04-26 20:19:33 +02:00
adapters Merge pull request #4080 from hmlnarik/KEYCLOAK-2122-Config-of-AssertionConsumerServiceUrl-in-Saml-Adapter 2017-04-26 15:26:50 +02:00
authz [KEYCLOAK-4755] - Client UI Tests 2017-04-26 12:11:53 -03:00
boms KEYCLOAK-4601 Add nexus-staging-maven-plugin fo keycloak-bom-parent 2017-03-17 13:11:59 +01:00
common KEYCLOAK-4780 Ensure Base64 encoded HMAC secret key is decoded before use 2017-04-26 16:04:44 +02:00
core [KEYCLOAK-4755] - Client UI Tests 2017-04-26 12:11:53 -03:00
dependencies Bump to 3.1.0.CR1-SNAPSHOT 2017-03-16 14:21:40 +01:00
distribution KEYCLOAK-4713 Update domain mode config for EAP 7.1 2017-04-26 15:17:43 +02:00
examples [KEYCLOAK-4792] - Client credentials provider support and making easier to obtain authz client 2017-04-25 14:51:45 -03:00
federation KEYCLOAK-4671 Add server-private-spi to dependency deployer 2017-04-25 10:16:24 +02:00
integration [KEYCLOAK-4755] - Client UI Tests 2017-04-26 12:11:53 -03:00
misc Inclusion of support for credentials 2017-04-07 06:05:24 -03:00
model KEYCLOAK-4789 Can't remove userStorage when linked users have consent 2017-04-25 11:32:26 +02:00
proxy Bump to 3.1.0.CR1-SNAPSHOT 2017-03-16 14:21:40 +01:00
saml-core KEYCLOAK-2122 Configuration of AssertionConsumerServiceUrl in SAML adapter 2017-04-26 11:59:37 +02:00
saml-core-api Bump to 3.1.0.CR1-SNAPSHOT 2017-03-16 14:21:40 +01:00
server-spi Bump to 3.1.0.CR1-SNAPSHOT 2017-03-16 14:21:40 +01:00
server-spi-private KEYCLOAK-4780 Ensure Base64 encoded HMAC secret key is decoded before use 2017-04-26 16:04:44 +02:00
services KEYCLOAK-4780 Ensure Base64 encoded HMAC secret key is decoded before use 2017-04-26 16:04:44 +02:00
testsuite Merge pull request #4084 from pedroigor/KEYCLOAK-4755 2017-04-26 13:29:00 -03:00
themes [KEYCLOAK-4755] - Client UI Tests 2017-04-26 12:11:53 -03:00
util Bump to 3.1.0.CR1-SNAPSHOT 2017-03-16 14:21:40 +01:00
wildfly KEYCLOAK-4671 Add server-private-spi to dependency deployer 2017-04-25 10:16:24 +02: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 Remove adapter tests from Travis as no tests where being ran 2017-03-13 14:42:39 +01:00
License.html distro 2014-01-07 14:37:50 -05:00
pom.xml KEYCLOAK-4764 Fixes for distribution 2017-04-19 13:58:39 +02:00
README.md fixed maven prereq version to match pom 2016-11-13 12:24:01 -05:00
travis-run-tests.sh Add --no-snapshot-updates to Travis builds 2017-03-13 08:53:03 +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