No description
Find a file
2015-08-30 08:50:47 -04:00
broker KEYCLOAK-1375 2015-08-27 14:15:47 -04:00
connections Fix mongo 2015-08-21 08:26:12 +02:00
core KEYCLOAK-1295 Adapter support. Fixes 2015-08-21 08:26:12 +02:00
core-jaxrs Version bump 2015-07-28 10:20:40 +02:00
dependencies KEYCLOAK-1703 Remove jpa and mongo user session providers 2015-08-13 08:57:37 +02:00
distribution Updated release process docs 2015-08-18 13:48:21 +02:00
docbook document bypassing CORS 2015-08-21 11:43:13 -04:00
events fix 2015-08-21 17:01:29 -04:00
examples KEYCLOAK-1295 Adapter support. Fixes 2015-08-21 08:26:12 +02:00
export-import hotp 2015-08-05 20:39:47 -04:00
federation KEYCLOAK-1561 LDAPDn.getParentDn() return value is not a DN 2015-08-21 08:26:12 +02:00
forms [KEYCLOAK-1767] Clients table is unsorted 2015-08-23 21:03:06 +05:30
integration Merge pull request #1543 from raehalme/KEYCLOAK-1775 2015-08-21 21:06:00 -04:00
misc Upgraded instructions to upgrade OpenShift cartridge 2015-08-19 15:56:44 +02:00
model KEYCLOAK-1295 Adapter support. Fixes 2015-08-21 08:26:12 +02: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 reset password refactor/flow 2015-08-16 12:23:15 -04:00
services KEYCLOAK-1783 2015-08-29 08:57:04 -07:00
social Version bump 2015-07-28 10:20:40 +02:00
testsuite Merge pull request #1561 from velias/KEYCLOAK-1739 2015-08-27 09:06:42 -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 Updated release process docs 2015-08-18 13:48:21 +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