nhsx-website

(★ 38)

NHSX Website - built with Wagtail

File Explorer

  • .dockerignore
  • .gitignore
  • .pre-commit-config.yaml
  • buildspec.yml
  • CODE_OF_CONDUCT.md
  • docker-compose.env.example
  • docker-compose.test.yml
  • docker-compose.yml
  • docker-entrypoint.sh
  • LICENSE
  • package-lock.json
  • package.json
  • README.md
  • setup.cfg

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

pre-commit

View Details ▼

Create Git hooks that run before commits.

pre-commit install

Install pre-commit into your Git hooks:

pre-commit run

Run pre-commit hooks on all staged files:

pre-commit run --all-files

Run pre-commit hooks on all files, staged or unstaged:

// repository documentation