No description
Find a file
Tair Sabirgaliev 5a64d67404 Angular 2 PoC based on angular-cli generated project
- use `frontend-maven-plugin` to pull node/npm automatically
- tie `npm install` to relevant lifecycle (`mvn wildfly:deploy` automatically builds and includes build products into WAR)
- extern keycloak and product database base url, use `--env=war` to build a war colocated with keycloak and database app

Issues/Todos:
- when testing with `ng serve` will have to disable browser web security (product-database doesn’t allow cross-origin requests)
- no unit / e2e / arquillian tests for now
- `src/main/frontend/node_modules` is included in distribution build, this is a portability debt
2017-02-23 14:45:00 +06:00
adapters KEYCLOAK-4366 Issues when keycloak.js is initialized with token 2017-02-02 10:57:03 +01:00
authz Bump version to 3.0.0.CR1 2017-01-26 06:18:11 +01:00
boms KEYCLOAK-4195 Keycloak adapter and SPI bom 2017-01-27 12:19:40 +01:00
common Bump version to 3.0.0.CR1 2017-01-26 06:18:11 +01:00
core KEYCLOAK-3729 Ability to run tests within Keycloak server 2017-01-27 12:14:19 +01:00
dependencies Bump version to 3.0.0.CR1 2017-01-26 06:18:11 +01:00
distribution Merge pull request #3847 from stianst/KEYCLOAK-4008-CHECKSUMS 2017-02-08 20:05:39 +01:00
examples Angular 2 PoC based on angular-cli generated project 2017-02-23 14:45:00 +06:00
federation Merge remote-tracking branch 'upstream/master' 2017-02-09 09:13:00 -05:00
integration unlink/remoteimported 2017-02-08 19:48:22 -05:00
misc KEYCLOAK-3857 Clustered invalidation cache fixes and refactoring. Support for cross-DC for invalidation caches. 2016-11-16 22:29:23 +01:00
model Merge remote-tracking branch 'upstream/master' 2017-02-09 09:13:00 -05:00
proxy Bump version to 3.0.0.CR1 2017-01-26 06:18:11 +01:00
saml-core KEYCLOAK-4329 Fix NPE when not providing KeyInfo element in IdP initiated SSO SAML 2017-01-30 11:40:48 +01:00
saml-core-api Bump version to 3.0.0.CR1 2017-01-26 06:18:11 +01:00
server-spi unlink/remoteimported 2017-02-08 19:48:22 -05:00
server-spi-private Merge remote-tracking branch 'upstream/master' 2017-02-09 09:13:00 -05:00
services Merge remote-tracking branch 'upstream/master' 2017-02-09 09:13:00 -05:00
testsuite Merge remote-tracking branch 'upstream/master' 2017-02-09 09:13:00 -05:00
themes console remote imported/unlink users 2017-02-09 09:11:48 -05:00
util Bump version to 3.0.0.CR1 2017-01-26 06:18:11 +01:00
wildfly KEYCLOAK-4324 Upgrade and unify Aesh version to 0.66.12 2017-01-26 18:08:48 +01:00
.gitattributes KEYCLOAK-1385 Introduce end-of-line normalization 2015-07-17 13:46:51 +02:00
.gitignore KEYCLOAK-4101: jboss-cli script to do migration of configuration 2017-01-09 18:15:26 -05:00
.travis.yml Cleanup of tests including groups for Travis 2017-01-03 07:52:00 +01:00
License.html distro 2014-01-07 14:37:50 -05:00
pom.xml KEYCLOAK-4195 Keycloak adapter and SPI bom 2017-01-27 12:19:40 +01:00
README.md fixed maven prereq version to match pom 2016-11-13 12:24:01 -05:00
travis-run-tests.sh Cleanup of tests including groups for Travis 2017-01-03 07:52:00 +01:00

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