Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keycloak/keycloak-quickstarts
https://github.com/keycloak/keycloak-quickstarts
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/keycloak/keycloak-quickstarts
- Owner: keycloak
- License: apache-2.0
- Created: 2017-01-11T13:11:18.000Z (almost 8 years ago)
- Default Branch: latest
- Last Pushed: 2024-11-01T09:27:31.000Z (12 days ago)
- Last Synced: 2024-11-01T10:24:05.437Z (12 days ago)
- Language: Java
- Size: 103 MB
- Stars: 1,966
- Watchers: 67
- Forks: 976
- Open Issues: 48
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Keycloak Quickstarts
Keycloak is an Open Source Identity and Access Management solution for modern Applications and Services.
The quickstarts herein provided demonstrate securing applications with Keycloak using different programming languages (and frameworks)
and how to extend the server capabilities through a set of Java-based [Service Provider Interfaces(SPI)](https://www.keycloak.org/docs/latest/server_development/).
They provide small, specific, working examples that can be used as a reference for your own project.They are organized in this repository under different categories (or directories) as follows:
| Category | Description |
|-----------|---------------------------------------------------------------------------------------|
| extension | Examples about how to extend the server capabilities using some of the Keycloak SPIs. |
| jakarta | Examples about how secure Jakarta Applications |
| js | Examples about how to secure JavaScript Applications |
| nodejs | Examples about how to secure NodeJS Applications |
| spring | Examples about how to secure Spring Applications |For any missing programming language and framework, you might want to consider looking at:
* **Quarkus**
* [Securing a Client Application](https://quarkus.io/guides/security-oidc-code-flow-authentication-tutorial)
* [Securing a Resource Server Application](https://quarkus.io/guides/security-oidc-bearer-token-authentication-tutorial)We are happy to accept contributions for any reference that demonstrates how to
integrate Keycloak with additional programming languages or frameworks.## Building, Testing, and Running the Quickstarts
First clone the Keycloak repository:
git clone https://github.com/keycloak/keycloak-quickstarts.git
cd keycloak-quickstartsEach quickstart provides its own documentation with the steps you need to follow in order to build, test, and run the example.
Look at the `README.md` file at the root of a quickstart for more details.### Chrome driver version
Some automated tests rely on the chrome browser present on your laptop. Also you need to have correct version of chrome driver according
to the version of the chrome browser used. In case of the issues, see [Chrome page](https://googlechromelabs.github.io/chrome-for-testing/) and download
correct chrome driver version for your Chrome browser. Then add system property `webdriver.chrome.driver` when running the tests according to chrome version
and add whole path to the chrome driver. For instance something like `-Dwebdriver.chrome.driver=/somedir/chromedriver-linux64-119.0.6045.105/chromedriver`.## Help and Documentation
* [Documentation](https://www.keycloak.org/documentation.html)
* [User Mailing List](https://groups.google.com/d/forum/keycloak-user) - Mailing list for help and general questions about Keycloak## Reporting Security Vulnerabilities
If you've found a security vulnerability, please look at the [instructions on how to properly report it](https://github.com/keycloak/keycloak/security/policy)
## Reporting an issue
If you believe you have discovered a defect in Keycloak, please open [an issue](https://github.com/keycloak/keycloak-quickstarts/issues).
Please remember to provide a good summary, description as well as steps to reproduce the issue.## Contributing
Before contributing to this repository, please read our [contributing guidelines](CONTRIBUTING.md).
## Related Projects
* [Keycloak](https://github.com/keycloak/keycloak) - Keycloak Server and Java adapters
* [Keycloak Node.js Connect](https://github.com/keycloak/keycloak-nodejs-connect) - Node.js adapter for Keycloak
* [Keycloak Node.js Admin Client](https://github.com/keycloak/keycloak-nodejs-admin-client) - Node.js library for Keycloak Admin REST API## License
* [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0)