No description
Find a file
Stian Thorgersen bae2b62200 KEYCLOAK-2275
No Content-Security-Policy meta tag found on Cordova 5.x
2016-01-08 14:34:52 +01:00
broker
client-registration
common
connections Merge remote-tracking branch 'upstream/master' 2016-01-04 11:26:15 -05:00
core Merge remote-tracking branch 'upstream/master' 2016-01-07 17:25:58 -05:00
dependencies
distribution KEYCLOAK-2247 2016-01-06 16:15:00 +01:00
docbook Add note that JDK8 is required to build and to run the server 2016-01-08 13:56:07 +01:00
events
examples KEYCLOAK-2275 2016-01-08 14:34:52 +01:00
export-import
federation Documentation for new LDAP mappers 2016-01-05 18:50:54 +01:00
forms Merge remote-tracking branch 'upstream/master' 2016-01-07 17:25:58 -05:00
integration Merge pull request #1945 from raehalme/KEYCLOAK-1579 2016-01-04 17:15:25 -05:00
misc
model 2213 2016-01-07 17:25:47 -05:00
proxy
saml 2213 2016-01-07 17:25:47 -05:00
services Merge remote-tracking branch 'upstream/master' 2016-01-07 17:25:58 -05:00
social
testsuite Merge remote-tracking branch 'upstream/master' 2016-01-07 17:25:58 -05:00
timer
util
wildfly KEYCLOAK-2272 2016-01-08 13:39:49 +01:00
.gitattributes
.gitignore
.travis.yml Tweak mem for Travis 2016-01-06 16:15:00 +01:00
License.html
pom.xml KEYCLOAK-2247 2016-01-06 16:15:00 +01:00
README.md Add note that JDK8 is required to build and to run the server 2016-01-08 13:56:07 +01: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 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