Last active
February 20, 2024 15:29
-
-
Save pauldougan/add1d5fb7e3b9efaa13c996840cddacb to your computer and use it in GitHub Desktop.
Run GOV.UK One Login prototype
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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