No description
Find a file
2015-11-20 16:18:42 -05:00
broker
client-registration KEYCLOAK-1749 Add documentation and fixed clean-up of expired initial access tokens 2015-11-19 16:11:41 +01:00
common KEYCLOAK-1750 First broker login - tests 2015-11-13 09:32:46 +01:00
connections default groups 2015-11-18 19:40:30 -05:00
core default groups 2015-11-18 19:40:30 -05:00
dependencies KEYCLOAK-2056: Removal of file model provider 2015-11-13 13:44:15 -02:00
distribution Removal of module keycloak-connections-file 2015-11-13 13:44:15 -02:00
docbook KEYCLOAK-2010 2015-11-20 16:18:42 -05:00
events
examples
export-import group token/assertion and tests 2015-11-18 09:36:47 -05:00
federation treat principal name case insensitive 2015-11-17 09:32:14 +01:00
forms default groups ui 2015-11-20 10:41:08 -05:00
integration default groups 2015-11-18 19:40:30 -05:00
misc
model Merge pull request #1843 from stianst/client-reg 2015-11-19 19:58:42 +01:00
proxy
saml KEYCLOAK-2010 2015-11-20 16:18:42 -05:00
services Merge pull request #1843 from stianst/client-reg 2015-11-19 19:58:42 +01:00
social
testsuite Merge pull request #1843 from stianst/client-reg 2015-11-19 19:58:42 +01:00
timer
util
.gitattributes
.gitignore
.travis.yml Enabled testsuite/integration-arquillian on Travis 2015-07-20 10:39:08 +02:00
License.html
pom.xml KEYCLOAK-1749 Moved clien registration api 2015-11-18 15:09:32 +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 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