No description
Find a file
Stian Thorgersen 2f88868e20 Merge pull request #2014 from ssilvert/KEYCLOAK-2294-pi-testrealm
KEYCLOAK-2294 Partial import can fail with 'Removing a detached insta…
2016-01-13 08:37:49 +01:00
broker KEYCLOAK-1717 Truststore SPI and file provider 2016-01-10 12:39:30 +01:00
client-registration
common
connections KEYCLOAK-2290 bulk update of algorithm field during migration from 1.7 2016-01-12 18:04:50 +01:00
core KEYCLOAK-2290 bulk update of algorithm field during migration from 1.7 2016-01-12 18:04:50 +01:00
dependencies KEYCLOAK-1717 Truststore SPI and file provider 2016-01-10 12:39:30 +01:00
distribution KEYCLOAK-2298 2016-01-12 19:46:34 +01:00
docbook [KEYCLOAK-2266] - OAuth2 Token Introspection. 2016-01-12 11:16:42 -02:00
events [KEYCLOAK-2266] - OAuth2 Token Introspection. 2016-01-12 11:16:42 -02:00
examples KEYCLOAK-2275 2016-01-08 14:34:52 +01:00
export-import
federation KEYCLOAK-1717 Truststore SPI and file provider 2016-01-10 12:39:30 +01:00
forms Merge pull request #1998 from ssilvert/partial-import 2016-01-11 09:22:09 +01:00
integration
misc
model KEYCLOAK-2290 bulk update of algorithm field during migration from 1.7 2016-01-12 18:04:50 +01:00
proxy
saml
services Merge pull request #2014 from ssilvert/KEYCLOAK-2294-pi-testrealm 2016-01-13 08:37:49 +01:00
social
testsuite Merge pull request #1999 from pedroigor/KEYCLOAK-2266 2016-01-12 15:37:41 +01:00
timer
util KEYCLOAK-1717 Truststore SPI and file provider 2016-01-10 12:39:30 +01:00
wildfly
.gitattributes
.gitignore
.travis.yml
License.html
pom.xml KEYCLOAK-2288 2016-01-11 15:10:00 +01: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 8 (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