Download/Fork and clone/get this stuff on your machine https://github.com/keycloak/keycloak-containers
Then in the top directory of the repo run
% docker build -t <whatever you want to call the image> ./server
% docker run -p 8080:8080
Download/Fork and clone/get this stuff on your machine https://github.com/keycloak/keycloak-containers
Then in the top directory of the repo run
% docker build -t <whatever you want to call the image> ./server
% docker run -p 8080:8080
Mac Updates keep removing git, so I made this:
Add this to your .zprofile and it will automatically check if git is installed and ask to install it if it isn't when you start a new zsh session.
if [[ "$(git -v 2>&1)" == *"error: invalid active developer path"* ]]; then
echo "git missing. installing Command Line Tools"
xcode-select --install
fi
| #!/usr/bin/env node | |
| import { readFile, writeFile, mkdir } from 'fs/promises'; | |
| import { join } from 'path'; | |
| /** | |
| * @typedef {Object} PostmanUrl | |
| * @property {string} [raw] | |
| * @property {string} [protocol] | |
| * @property {string[]} [host] |