diff --git a/app/views/how-tos/switching-from-govuk-prototype-kit.html b/app/views/how-tos/switching-from-govuk-prototype-kit.html index 73e637de..0d6c744f 100644 --- a/app/views/how-tos/switching-from-govuk-prototype-kit.html +++ b/app/views/how-tos/switching-from-govuk-prototype-kit.html @@ -17,6 +17,8 @@

Installing and running the NHS.UK prototype kit

+ {% include "install/_nhs-england-laptop-warning.html" %} +

When you are installing and running your prototype:

{{ list({ title: "Do", type: "tick", items: [ { item: 'There are some extra steps for NHS England Windows laptops you must do before you start.

', + classes: "nhsuk-u-padding-top-3 nhsuk-u-padding-bottom-3 nhsuk-u-margin-bottom-4" +}) }} diff --git a/app/views/install/advanced.html b/app/views/install/advanced.html index 6029ad69..d4888b00 100644 --- a/app/views/install/advanced.html +++ b/app/views/install/advanced.html @@ -26,9 +26,13 @@

Advanced install guide

The kit is built on the Express framework, and uses NHS.UK frontend.

+ +

Requirements

-

Node.js version 20 or higher

+

Node.js version 20 or higher.

+ + {% include "install/_nhs-england-laptop-warning.html" %}

Download the kit

@@ -39,6 +43,9 @@

Download the kit

Install dependencies

+ + +
npm install

Run the kit

diff --git a/app/views/install/index.html b/app/views/install/index.html index 269eb2ff..44288cd7 100755 --- a/app/views/install/index.html +++ b/app/views/install/index.html @@ -34,6 +34,10 @@

Get started

+

NHS England Windows laptops

+ +

See guide for setting up the kit on NHS England Windows laptops.

+

Updating

diff --git a/app/views/install/nhs-england-windows-laptops.html b/app/views/install/nhs-england-windows-laptops.html new file mode 100644 index 00000000..c8d14c56 --- /dev/null +++ b/app/views/install/nhs-england-windows-laptops.html @@ -0,0 +1,73 @@ +{% extends 'layout.html' %} + +{% block pageTitle %} + Set up the prototype kit on an NHS England Windows laptop - NHS.UK prototype kit +{% endblock %} + +{% block beforeContent %} + {{ breadcrumb({ + items: [ + { + href: "/", + text: "Home" + } + ], + href: "/install", + text: "Get started" + }) }} +{% endblock %} + + + +{% block content %} +

+
+ +

Set up the prototype kit on an NHS England Windows laptop

+ +

If you have a Windows laptop issued by NHS England corporate IT, before you start any of the install guides you will need to:

+ +
    +
  1. create a local folder in the right place for your code to work.
  2. +
  3. install the software that you need.
  4. +
+ + +

1. Create a local folder for your prototypes

+ +

Within the root of your OneDrive create a new folder named DevWspace.

+ +

This folder name was added to an approved list to allow the creation of virtual environments and allow scripts to be executed.

+ +

The path should look like this after you have created it:

+ +
"C:\Users\%username%\OneDrive - NHS\DevWspace"
+ +

Use this folder:

+ + + +

2. Install the software you need to use the kit

+ +

Go to the Company Portal application to install this software:

+ + + +

You may need to restart your computer to finish installing the software.

+ +

What to do next

+ +

After you have finished these steps you can continue to the install guide or the advanced install guide.

+ +
+
+{% endblock %} diff --git a/app/views/install/simple.html b/app/views/install/simple.html index b3f17bbd..453d3571 100644 --- a/app/views/install/simple.html +++ b/app/views/install/simple.html @@ -18,31 +18,49 @@ {% endblock %} {% block content %} -
+
+
+

Install guide

-
+

+ To start making prototypes you need to setup the right tools to make the + kit work. +

-

- Install guide -

+

This guide will show you how to get setup in 8 steps.

-

To start making prototypes you need to setup the right tools to make the kit work.

+

You don’t need any technical knowledge to follow along.

-

This guide will show you how to get setup in 8 steps.

+

+ Installation takes up to 20 minutes depending on how much you need to + install. +

-

You don’t need any technical knowledge to follow along.

+ {% include "install/_nhs-england-laptop-warning.html" %} -

Installation takes up to 20 minutes depending on how much you need to install.

+ {{ actionLink({ text: "Start install guide", href: "/install/mac-or-windows" }) }} -

If you have any problems, ask a developer on your team (if you have one), email us or get in touch on the NHS digital service manual #prototype-kit Slack channel.

+

Problems using this guide

+

+ If you have any problems, ask a developer on your team (if you have one), + email us + or get in touch on the + NHS digital service manual #prototype-kit Slack channel. +

-
-

If you are familiar with using git and the terminal, then you might prefer the advanced guide.

-
- - Start now - -
+

Other install guides

+

+ If you are familiar with using git and the terminal, then you might prefer + the advanced guide. +

+
{% endblock %}