No description
Find a file
2015-09-10 12:30:07 +03:00
broker more mappers 2015-08-31 16:23:17 -04:00
connections KEYCLOAK-1795 Add just one clientAuthenticatorType per client 2015-09-04 00:09:54 +02:00
core KEYCLOAK-1821 KEYCLOAK-1825 Migration and export/import of clientAuthFlow + resetCredentialsFlow 2015-09-08 19:53:35 +02:00
core-jaxrs
dependencies
distribution Updated release process docs 2015-08-18 13:48:21 +02:00
docbook KEYCLOAK-1795 Add just one clientAuthenticatorType per client 2015-09-04 00:09:54 +02:00
events refactor recover password 2015-08-31 10:13:42 -04:00
examples Fix service-account demo app on EAP 6.4 2015-09-08 16:41:27 +02:00
export-import KEYCLOAK-1789 KEYCLOAK-1759 Export/import fixes 2015-09-02 12:03:16 +02:00
federation KEYCLOAK-1826 2015-09-08 21:00:42 +02:00
forms KEYCLOAK-1816 2015-09-07 13:02:52 +02:00
integration Added check for null authentication on the logout method. 2015-09-10 12:30:07 +03:00
misc Upgraded instructions to upgrade OpenShift cartridge 2015-08-19 15:56:44 +02:00
model KEYCLOAK-1821 KEYCLOAK-1825 Migration and export/import of clientAuthFlow + resetCredentialsFlow 2015-09-08 19:53:35 +02:00
proxy
saml more mappers 2015-08-31 16:23:17 -04:00
services KEYCLOAK-1811 Pluggable client authentication config through adapter subsystem 2015-09-07 23:30:08 +02:00
social
testsuite KEYCLOAK-1821 KEYCLOAK-1825 Migration and export/import of clientAuthFlow + resetCredentialsFlow 2015-09-08 19:53:35 +02:00
timer
util
.gitattributes
.gitignore
.travis.yml
License.html
pom.xml Updated release process docs 2015-08-18 13:48:21 +02:00
README.md

Keycloak

Keycloak is an SSO Service for web apps and REST services. For more information visit http://keycloak.org.

Building

Ensure you have JDK 7 (or newer), Maven 3.2.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 specficied 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.

Contributing

Documentation

License