No description
Find a file
2015-11-13 14:00:20 +01:00
broker KEYCLOAK-1750 Improve first time login with social. Added 'first broker login' flow 2015-11-09 10:34:55 +01:00
client-api
common KEYCLOAK-1750 First broker login - tests 2015-11-13 09:32:46 +01:00
connections Merge pull request #1805 from velias/KEYCLOAK-2033 2015-11-12 09:21:38 +01:00
core user group membership 2015-11-12 11:31:44 -05:00
dependencies
distribution KEYCLOAK-2055 2015-11-11 14:32:43 +01:00
docbook KEYCLOAK-2077: correcting paths in custom-attributes.xml 2015-11-13 14:00:20 +01:00
events KEYCLOAK-1750 First broker login - events 2015-11-13 09:32:46 +01:00
examples resolve conflicts 2015-11-11 18:06:39 -05:00
export-import
federation resolve conflicts 2015-11-11 18:06:39 -05:00
forms KEYCLOAK-1750 First broker login - tests 2015-11-13 09:32:46 +01:00
integration KEYCLOAK-2064: Update pax-web to make use of SecureRandom 2015-11-12 09:46:45 -02:00
misc
model KEYCLOAK-1750 First broker login - tests 2015-11-13 09:32:46 +01:00
proxy
saml resolve conflicts 2015-11-11 18:06:39 -05:00
services KEYCLOAK-1750 First broker login - events 2015-11-13 09:32:46 +01:00
social
testsuite KEYCLOAK-1750 First broker login - tests 2015-11-13 09:32:46 +01:00
timer
util
.gitattributes
.gitignore
.travis.yml
License.html
pom.xml KEYCLOAK-2060 2015-11-12 09:17:47 +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