No description
Find a file
Stian Thorgersen 0d957311b4 Merge pull request #1364 from mstruk/wf9cr2
KEYCLOAK-1441 Upgrade to WildFly 9 CR2
2015-06-12 11:30:42 +01:00
broker KEYCLOAK-1373 - added attribute importer for other social providers, 2015-06-09 13:49:58 +02:00
connections KEYCLOAK-1403 Update liquibase to newest version. Fix Sybase 2015-06-12 11:11:28 +02:00
core
core-jaxrs
dependencies
distribution Fixed pom issues that were generating tons of Maven warnings 2015-06-11 16:57:33 +02:00
docbook Merge pull request #1344 from velias/KEYCLOAK-1373 2015-06-10 09:02:03 -04:00
events KEYCLOAK-1088 Audit of user grants during login 2015-06-09 20:37:12 +02:00
examples Fixed pom issues that were generating tons of Maven warnings 2015-06-11 16:57:33 +02:00
export-import
federation
forms KEYCLOAK-1439 Admin Console is not loaded when Keycloak is installed as root context 2015-06-11 08:15:42 +02:00
integration Merge pull request #1353 from Smartling/KEYCLOAK-1438 2015-06-12 07:50:00 +01:00
misc
model Merge pull request #1361 from ssilvert/KEYCLOAK-1083-unlock-user-account 2015-06-12 07:44:07 +01:00
proxy
saml KEYCLOAK-1260 Fix saml backchannel logout with JPA UserSession provider on MySQL + PostgreSQL 2015-06-10 18:59:07 +02:00
services Merge pull request #1361 from ssilvert/KEYCLOAK-1083-unlock-user-account 2015-06-12 07:44:07 +01:00
social KEYCLOAK-1373 - added attribute importer for other social providers, 2015-06-09 13:49:58 +02:00
testsuite KEYCLOAK-1405 Fix MSSQL Server 2015-06-11 22:23:45 +02:00
timer
.gitignore
.travis.yml
License.html
pom.xml KEYCLOAK-1441 Upgrade to WildFly 9 CR2 2015-06-12 11:49:36 +02: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