No description
Find a file
Pavel Drozd 12fec09410 Merge pull request #4150 from pdrozd/KEYCLOAK-4930
KEYCLOAK-4930 - Updated install-keycloak script for overlay installat…
2017-05-23 14:00:35 +02:00
adapters Merge pull request #4167 from sebastienblanc/bug-KEYCLOAK-3492 2017-05-23 13:58:19 +02:00
authz
boms rename the starter and spring-boot-starter 2017-04-27 15:54:44 +02:00
common KEYCLOAK-4855 2017-05-19 09:37:32 +02:00
core Merge pull request #4066 from johnament/KEYCLOAK-4765 2017-05-23 13:24:08 +02: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
model KEYCLOAK-4939 ConcurrentLoginTest broken in latest master 2017-05-19 14:00:52 +02:00
proxy
saml-core
saml-core-api
server-spi
server-spi-private Merge pull request #4140 from mstruk/RHSSO-978 2017-05-23 13:55:17 +02:00
services Merge pull request #4172 from hmlnarik/KEYCLOAK-4813-Destination-Validation-should-ignore-whether-default-port-is-explicitly-specified 2017-05-23 13:59:36 +02:00
testsuite Merge pull request #4150 from pdrozd/KEYCLOAK-4930 2017-05-23 14:00:35 +02:00
themes Merge pull request #4085 from mstruk/RHSSO-402 2017-05-23 13:29:32 +02: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