No description
Find a file
Stian Thorgersen d081f967ea Merge pull request #4067 from hmlnarik/KEYCLOAK-4779
KEYCLOAK-4779 Fix NPE
2017-04-25 10:31:00 +02:00
adapters Merge pull request #3838 from ahus1/KEYCLOAK-4208-spring-boot-adapter-roles 2017-04-21 15:34:09 +02:00
authz [KEYCLOAK-3135] - More UI tests 2017-04-24 16:50:23 -03:00
boms
common Remove the deprecated from readString(InputStream, Charset) 2017-04-13 15:42:23 +08:00
core [KEYCLOAK-3135] - More UI tests 2017-04-24 16:50:23 -03:00
dependencies
distribution KEYCLOAK-4764 Fixes for distribution 2017-04-19 13:58:39 +02:00
examples
federation
integration [KEYCLOAK-3135] - More changes to Policy Management API 2017-04-24 07:34:08 -03:00
misc Inclusion of support for credentials 2017-04-07 06:05:24 -03:00
model KEYCLOAK-4326 KEYCLOAK-4588 Can't get granted consents if client template mappers were consented to 2017-04-24 15:44:38 +02:00
proxy
saml-core
saml-core-api
server-spi
server-spi-private [KEYCLOAK-4754] - Unable to delete realm when using aggregated policies 2017-04-20 12:10:52 -03:00
services KEYCLOAK-4779 Fix NPE 2017-04-24 23:09:27 +02:00
testsuite Merge pull request #4067 from hmlnarik/KEYCLOAK-4779 2017-04-25 10:31:00 +02:00
themes Merge pull request #4062 from ssilvert/dbl-click 2017-04-25 08:57:15 +02:00
util
wildfly KEYCLOAK-4764 Fixes for distribution 2017-04-19 13:58:39 +02:00
.gitattributes
.gitignore
.travis.yml
License.html
pom.xml KEYCLOAK-4764 Fixes for distribution 2017-04-19 13:58:39 +02: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