-
Notifications
You must be signed in to change notification settings - Fork 1
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
Changes from 1 commit
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
e6c1440
Add instructions for installation on NHS England machines
frankieroberto 9530625
initial version with warning text
vickytnz 0ab664f
open with expanders
vickytnz 56d138a
minimal version
vickytnz 6981bd7
callout on advanced page
vickytnz 2f2a3f2
option of inset text and restructured install page
vickytnz 0c0e088
tweaked ordering
vickytnz 7c078c0
typo fix, modularise content on other pages
vickytnz c627872
Merge branch 'main' into add-nhs-england-install-instructions
frankieroberto 823e94d
Switch to using an includes instead of custom macro
frankieroberto File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
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> | ||
|
||
<ul> | ||
<li>Terminal</li> | ||
<li>Visual Studio Code</li> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 %} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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?