Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add instructions for installation on NHS England machines #68

Merged
merged 10 commits into from
Nov 4, 2024
4 changes: 4 additions & 0 deletions app/views/install/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ <h1 class="nhsuk-heading-xl">Get started</h1>
</li>
</ul>

<h2 class="nhsuk-heading-m">NHS England Windows laptops</h2>

<p>See <a href="/install/nhs-england-windows-laptops">guide for setting up the kit on NHS England Windows laptops</a>.</p>

<h2 class="nhsuk-heading-m">Updating</h2>

<p>
Expand Down
54 changes: 54 additions & 0 deletions app/views/install/nhs-england-windows-laptops.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{% extends 'layout.html' %}

{% block pageTitle %}
Installation 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 %}
<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-two-thirds">

<h1 class="nhsuk-heading-l">Installation on an NHS England Windows laptop</h1>

<p>If you have a Windows laptop issued by NHS England corporate IT, then you can largely follow the <a href="/install/windows/terminal">install guide for Windows</a> but there are some additional steps.</p>

<h2 class="nhsuk-heading-m">Install software dependencies</h2>

<p>The following can be installed from the Company Portal application:</p>
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure where this application actually lives? Is it a web-based thing we could link to, or some kind of app buried in the start menu?


<ul>
<li>Terminal</li>
<li>Visual Studio Code</li>
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure if it’s called Visual Studio Code or VS Code within the Company Portal application - we should check.

<li>Node.js and NPM</li>
<li>Git for Windows</li>
<li>Github Desktop</li>
</ul>

<h2>Creating a local folder</h2>

<p>Within the root of your OneDrive create a new folder named <code><strong>DevWspace</strong></code>.</p>

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

<p>The path should look like this after you have created it:</p>

<pre class="app-pre"><code class="app-code">"C:\Users\%username%\OneDrive - NHS\DevWspace"</code></pre>

<p>Change the default path location for all the developer programs you use and move any existing prototypes you currently have to this new location.</p>

</div>
</div>
{% endblock %}