Skip to content

Instantly share code, notes, and snippets.

@pauldougan
Last active February 20, 2024 15:29
Show Gist options
  • Select an option

  • Save pauldougan/add1d5fb7e3b9efaa13c996840cddacb to your computer and use it in GitHub Desktop.

Select an option

Save pauldougan/add1d5fb7e3b9efaa13c996840cddacb to your computer and use it in GitHub Desktop.
Run GOV.UK One Login prototype
#!/usr/bin/env bash
# run the GOV.UK One Login tech docs locally from https://github.com/govuk-one-login/authentication-tech-docs
ORG=govuk-one-login
REPO=prototype
NODE_VERSION=20.11.0
DIR=$(mktemp -d /tmp/${ORG}_${REPO}_XXXXXX)
echo $DIR
cd $DIR
git clone https://github.com/$ORG/$REPO
cd $REPO
nvm use $NODE_VERSION
npm install
npm run dev
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment