From d9c6d83249891c086026e35640853065edb73a71 Mon Sep 17 00:00:00 2001 From: Brian McCullough Date: Mon, 5 Aug 2024 13:22:50 -0400 Subject: [PATCH 1/2] Added missing PATH element. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5f7f698..b04e1c2 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ mkdir -p $HOME/.local/share/virtualenvs ~/.local/bin python3 -m venv $HOME/.local/share/virtualenvs/ansible $HOME/.local/share/virtualenvs/ansible/bin/pip install ansible ln -s $HOME/.local/share/virtualenvs/ansible/bin/ansible* $HOME/.local/bin/ -export PATH=$HOME/.local/bin:$PATH +export PATH=$HOME/.local/bin:$HOME/go/bin:$PATH ``` *Note:* It is a good idea to put the `PATH` export line into your `.bashrc` or -- 2.30.2 From fd39d943530d6bc13c3d93d9579cc65e31bf089b Mon Sep 17 00:00:00 2001 From: Brian McCullough Date: Tue, 6 Aug 2024 10:34:49 -0400 Subject: [PATCH 2/2] Further adjustments to README procedure. --- README.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b04e1c2..b1cf555 100644 --- a/README.md +++ b/README.md @@ -80,8 +80,8 @@ Finally, change into the `oidc_registration` sub-directory. ### Continuing -At this point, you should have created all of the certificates and configuration files -needed by this system. +At this point, if you followed the Manual procedure, you should have created all +of the certificates and configuration files needed by this system. ### Build the applications @@ -93,6 +93,11 @@ Use `make` to build the web app resources and applications: go install github.com/nicksnyder/go-i18n/v2/goi18n@latest ``` +## Deployment options + +Before you continue, you need to make the binaries. + + ### Build the applications Use `make` to build the web app resources and applications: @@ -101,7 +106,8 @@ Use `make` to build the web app resources and applications: make ``` -## Deployment options +Before continuing, you need to install Ansible. You can use the one in the Debian 12 +repository. Just Apt-Get Install "ansible". There are two deployment options for the Hydra server and for the custom applications: @@ -110,8 +116,6 @@ There are two deployment options for the Hydra server and for the custom applica You only need one of these options. -Both options use [ansible](https://docs.ansible.com/) to: - - setup the Hydra authorization server - setup IDP (provides login and consent screens) - setup demo application -- 2.30.2