Documentation and HowTos

Collection of short documentation and howtos to several domains I worked on, or I’m interested in.

Using KeyCloak on your local machine

Every project with more than one user must have some authentication and authorization. These days, there is a quite handy and easy to user solution for user management that comes in a project called [KeyCloak](https://www.keycloak.org/ “KeyCloak”). KeyCloak provides all necessary functionality like user registration, sign-in, and sign-in via Google, Facebook, and whatnot, all with support for modern standards like OICD.

Using KeyCloak on your local machine Read More »

The minimal react application (with TypeScript)

To create a new React application, enter the following command: A minimal react application contains an index.html page with an element marked with id=”root” and an index.tsx (TypeScript with jsx included) with the following content: // Importing ReactDOM. Needed to render the page.import ReactDOM from “react-dom”;// Build a minimal React-Function Component as a Function// that

The minimal react application (with TypeScript) Read More »

Nach oben scrollen