No description
Find a file
Stan Silvert 0f1e73facc Merge pull request #3878 from ssilvert/funny-realm-names
KEYCLOAK-4467: Realm name collides with sidebar navigation
2017-02-20 16:35:14 -05:00
adapters KEYCLOAK-4394 Use JBoss logging 2017-02-15 09:05:42 +01:00
authz In case of PKI validation exception HttpMethod throws NPE, because bytes value is null. 2017-02-03 11:24:30 +02:00
boms KEYCLOAK-4423 : Adding Spring Boot Adapter 2017-02-14 14:33:15 +01:00
common
core
dependencies KEYCLOAK-4384 Remove Mongo support 2017-02-15 15:20:58 +01:00
distribution KEYCLOAK-4384 Remove Mongo support 2017-02-15 15:20:58 +01:00
examples
federation KEYCLOAK-4382 2017-02-13 10:51:10 -05:00
integration unlink/remoteimported 2017-02-08 19:48:22 -05:00
misc KEYCLOAK-4384 Remove Mongo support 2017-02-15 15:20:58 +01:00
model KEYCLOAK-4384 Remove Mongo support 2017-02-15 15:20:58 +01:00
proxy
saml-core
saml-core-api
server-spi unlink/remoteimported 2017-02-08 19:48:22 -05:00
server-spi-private Merge pull request #3857 from anderius/feature/KEYCLOAK-4392-component-id 2017-02-14 09:43:38 +01:00
services Merge pull request #3736 from guusdk/api-documentation 2017-02-20 15:30:32 +01:00
testsuite Merge pull request #3872 from mhajas/KEYCLOAK-4179 2017-02-20 15:44:29 +01:00
themes KEYCLOAK-4467: Realm name collides with sidebar navigation 2017-02-20 15:43:46 -05:00
util
wildfly Fix server dist broken due to userSessionPersister removed 2017-02-16 16:15:40 +01:00
.gitattributes
.gitignore
.travis.yml
License.html
pom.xml KEYCLOAK-4384 Remove Mongo support 2017-02-15 15:20:58 +01:00
README.md
travis-run-tests.sh

Keycloak

Open Source Identity and Access Management for modern Applications and Services.

For more information about Keycloak visit Keycloak homepage and Keycloak blog.

Building

Ensure you have JDK 8 (or newer), Maven 3.1.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 specified 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.

Help and Documentation

  • Documentation - User Guide, Admin REST API and Javadocs
  • User Mailing List - Mailing list to ask for help and general questions about Keycloak
  • JIRA - Issue tracker for bugs and feature requests

Contributing

License