No description
Find a file
2015-08-11 17:44:06 -04:00
broker Version bump 2015-07-28 10:20:40 +02:00
connections binding custom flows 2015-08-07 19:00:07 -04:00
core binding custom flows 2015-08-07 19:00:07 -04:00
core-jaxrs Version bump 2015-07-28 10:20:40 +02:00
dependencies KEYCLOAK-1702 KEYCLOAK-1703 Remove mem user session provider 2015-07-29 12:02:27 +02:00
distribution KEYCLOAK-1732 Fix standalone.xml in demo distribution 2015-08-05 13:33:11 +02:00
docbook auth spi doco 2015-08-11 17:44:06 -04:00
events refactor requiredactions, start doco 2015-08-11 13:04:40 -04:00
examples refactor requiredactions, start doco 2015-08-11 13:04:40 -04:00
export-import hotp 2015-08-05 20:39:47 -04:00
federation KEYCLOAK-1562 better error reporting when missing UUID on ldap user record 2015-08-04 13:21:09 +02:00
forms refactor requiredactions, start doco 2015-08-11 13:04:40 -04:00
integration KEYCLOAK-1702 KEYCLOAK-1703 Make Infinispan default user session and cache provider 2015-07-29 10:08:15 +02:00
misc KEYCLOAK-1385 Introduce end-of-line normalization 2015-07-17 13:46:51 +02:00
model refactor requiredactions, start doco 2015-08-11 13:04:40 -04:00
proxy Populate the KEYCLOAK_USERNAME header, this fixes the authenticate and roles-allowed constraints in the proxy. 2015-07-30 16:24:16 -05:00
saml binding custom flows 2015-08-07 19:00:07 -04:00
services refactor requiredactions, start doco 2015-08-11 13:04:40 -04:00
social Version bump 2015-07-28 10:20:40 +02:00
testsuite refactor requiredactions, start doco 2015-08-11 13:04:40 -04:00
timer Version bump 2015-07-28 10:20:40 +02:00
util Version bump 2015-07-28 10:20:40 +02:00
.gitattributes KEYCLOAK-1385 Introduce end-of-line normalization 2015-07-17 13:46:51 +02:00
.gitignore Old experiment with keycloak-server.json embedded into standalone.xml 2014-11-05 08:31:05 -05:00
.travis.yml Enabled testsuite/integration-arquillian on Travis 2015-07-20 10:39:08 +02:00
License.html distro 2014-01-07 14:37:50 -05:00
pom.xml KEYCLOAK-1702 KEYCLOAK-1703 Remove mem user session provider 2015-07-29 12:02:27 +02:00
README.md Updates to README.md 2015-04-14 10:38:25 +02:00

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