No description
Find a file
2017-05-23 17:50:06 -03:00
adapters Merge pull request #4136 from frelibert/KEYCLOAK-4897 2017-05-23 14:10:34 +02:00
authz KEYCLOAK-4929 2017-05-18 16:53:31 -04:00
boms Keycloak Authz Client dependency to adapter BOM 2017-05-18 20:36:16 -03:00
common KEYCLOAK-4855 2017-05-19 09:37:32 +02:00
core Fix to evaluation tool 2017-05-23 17:50:06 -03:00
dependencies
distribution KEYCLOAK-4477 Fix update to WF 11 2017-05-19 08:31:29 +02:00
examples
federation KEYCLOAK-4016 Provide a Link to go Back to The Application on a Timeout 2017-05-23 09:08:58 +02:00
integration Merge pull request #4085 from mstruk/RHSSO-402 2017-05-23 13:29:32 +02:00
misc Keycloak AuthZ Client as spring-boot-starter dependency 2017-05-19 17:15:22 -03:00
model Merge pull request #3557 from glavoie/KEYCLOAK-3988 2017-05-23 14:07:51 +02:00
proxy
saml-core
saml-core-api
server-spi KEYCLOAK-4889 2017-05-23 13:18:06 +02:00
server-spi-private Merge pull request #4174 from stianst/KEYCLOAK-4889 2017-05-23 14:26:15 +02:00
services Fix to evaluation tool 2017-05-23 17:50:06 -03:00
testsuite Merge pull request #4174 from stianst/KEYCLOAK-4889 2017-05-23 14:26:15 +02:00
themes Fix to evaluation tool 2017-05-23 17:50:06 -03:00
util
wildfly KEYCLOAK-4723 2017-05-19 09:43:15 +02:00
.gitattributes
.gitignore
.travis.yml
License.html
pom.xml KEYCLOAK-4723 2017-05-19 09:43:15 +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 server distribution first build the distribution it as specified above, then run:

tar xfz distribution/server-dist/target/keycloak-<VERSION>.tar.gz
cd keycloak-<VERSION>
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