This was initially set up as a collaborative space for teams at NHS Digital to draft guidance on how to make NHS services inclusive.
Many colleagues from NHS Digital (2020-2022) fed into this guidance by giving examples, critiquing or taking part in user research.
Since then it has been a living document with the aim of helping NHS Digital employees to design inclusively.
In March 2022 Snook were hired to design a roadmap for inclusive change at NHS Digital. Part of their roadmap was to develop clear standards for inclusive design. Which led to them coming back in 2023 for another project to create an inclusive definition and framework for considering inclusive design at NHS England.
The most recent update features this definition and additional guidance that was created by Snook whilst creating the definition and framework.
The prototype is hosted on Heroku: https://make-nhs-services-inclusive.herokuapp.com/
Username and password is managed in heroku in the settings tab under cofig vars.
- Open your computers version of terminal or command prompt
- Check if you have node by entering:
node --version
- If you have an error or a version lower than 8 then you need to download the latest version.
- You can download and install the latest version of node here: https://nodejs.org/en/
- Afterwards check to see if it is installed properly by entering:
node --version
- Get a local version of this repo:
- Navigate to the folder you want to clone the repo to in terminal
cd folder-name
- Clone this repo using
git clone https://github.com/nhsuk/make-nhs-services-inclusive-prototype.git
- Move into the local copy:
cd prototype-name-on-your-device
- Install all the modules by entering:
npm install
- Run it:
npm run watch
- Look at it in your browser http://localhost:3000/
- Make a branch:
git checkout -b myFeature
- Make any changes you need to in your chosen code editor
- Once you’re finished make a commit:
git add .
thengit commit -m "new feature"
- Push your work to github:
git push origin myFeature
- Merge it on github
- This prototype has set up automatic deploys with Heroku and so once merged it will start to build your changes.
- You can view the Heroku dashboard here: https://dashboard.heroku.com/apps/make-nhs-services-inclusive/deploy/github
- You can view the prototype here: https://make-nhs-services-inclusive.herokuapp.com/
- Switch back to main git checkout main and tidy up:
git branch -D myFeature