From 7461a2d001f48f30d8c61884725315c42575bf2f Mon Sep 17 00:00:00 2001 From: "Ross Buggins (NHS)" <78215796+RossBugginsNHS@users.noreply.github.com> Date: Wed, 13 Jul 2022 11:14:58 +0100 Subject: [PATCH] V0.1.1 alpha (#3) * Initial folder strucuture. * Added headings to account design. * Adding to base readme. Signed-off-by: Ross Buggins <78215796+RossBugginsNHS@users.noreply.github.com> * Correct experience spelling. Signed-off-by: Ross Buggins <78215796+RossBugginsNHS@users.noreply.github.com> * Added nhs-account.drawio * Added experimental .svg export of .drawio files. Currently a manual process. Signed-off-by: Ross Buggins <78215796+RossBugginsNHS@users.noreply.github.com> * Added Gov Open 3 licence. copied from https://github.com/nhsx/open-source-policy/blob/main/LICENCE Signed-off-by: Ross Buggins <78215796+RossBugginsNHS@users.noreply.github.com> * Renamed licence to license. Signed-off-by: Ross Buggins <78215796+RossBugginsNHS@users.noreply.github.com> * Testing mermaid. Signed-off-by: Ross Buggins <78215796+RossBugginsNHS@users.noreply.github.com> * Added what is account from briefing. Signed-off-by: Ross Buggins <78215796+RossBugginsNHS@users.noreply.github.com> * test jekyll. Signed-off-by: Ross Buggins <78215796+RossBugginsNHS@users.noreply.github.com> * ci: add Azure Static Web Apps workflow file on-behalf-of: @Azure opensource@microsoft.com * Update azure-static-web-apps-blue-beach-03e72e403.yml * Update azure-static-web-apps-blue-beach-03e72e403.yml * Update azure-static-web-apps-blue-beach-03e72e403.yml * Update azure-static-web-apps-blue-beach-03e72e403.yml * Update azure-static-web-apps-blue-beach-03e72e403.yml * Update azure-static-web-apps-blue-beach-03e72e403.yml * Base jekyll. Signed-off-by: Ross Buggins <78215796+RossBugginsNHS@users.noreply.github.com> * Base jekyll. Signed-off-by: Ross Buggins <78215796+RossBugginsNHS@users.noreply.github.com> * Jekyll config file. Signed-off-by: Ross Buggins <78215796+RossBugginsNHS@users.noreply.github.com> * Jekyll config file. Signed-off-by: Ross Buggins <78215796+RossBugginsNHS@users.noreply.github.com> * Add some pages. Signed-off-by: Ross Buggins <78215796+RossBugginsNHS@users.noreply.github.com> * Added jekyll custom menu theme. Signed-off-by: Ross Buggins <78215796+RossBugginsNHS@users.noreply.github.com> * Use .svg instead of .drawio in the docs files. Signed-off-by: Ross Buggins <78215796+RossBugginsNHS@users.noreply.github.com> * Changed theme to https://github.com/just-the-docs/just-the-docs. Signed-off-by: Ross Buggins <78215796+RossBugginsNHS@users.noreply.github.com> * Mermaid working, changed index to readme. Signed-off-by: Ross Buggins <78215796+RossBugginsNHS@users.noreply.github.com> * Addeded index back. Signed-off-by: Ross Buggins <78215796+RossBugginsNHS@users.noreply.github.com> * Sorted table. Signed-off-by: Ross Buggins <78215796+RossBugginsNHS@users.noreply.github.com> * Add Git process page. Signed-off-by: Ross Buggins <78215796+RossBugginsNHS@users.noreply.github.com> * Version v0.1-aplha for PR to upstream. Signed-off-by: Ross Buggins <78215796+RossBugginsNHS@users.noreply.github.com> * Change github workflow to main. Signed-off-by: Ross Buggins <78215796+RossBugginsNHS@users.noreply.github.com> * removed gemfile lock Signed-off-by: Ross Buggins <78215796+RossBugginsNHS@users.noreply.github.com> * removed old jekyll folder. Signed-off-by: Ross Buggins <78215796+RossBugginsNHS@users.noreply.github.com> --- AboutCE.md | 8 + CODE_OF_CONDUCT.md | 2 + LICENSE.md | 69 +++++++++ README.md | 10 +- contact.md | 13 ++ contents.md | 0 docs/.gitignore | 7 + docs/404.html | 25 +++ docs/Gemfile | 35 +++++ docs/README.md | 1 + docs/_config.yml | 55 +++++++ docs/_includes/head_custom.html | 4 + docs/_includes/mermaid.html | 10 ++ .../reference-architecture/README.md | 22 +++ docs/digital-health-check/README.md | 33 ++++ .../discovery-technical.md | 13 ++ docs/gov/readme.md | 7 + docs/index.md | 33 ++++ docs/nhs-account/README.md | 146 ++++++++++++++++++ docs/nhs-account/nhs-proxy/README.md | 19 +++ docs/nhs-account/what-is-account.md | 15 ++ docs/process/git.md | 14 ++ docs/robots.txt | 2 + docs/the-teams/README.md | 20 +++ .../digital-health-check/discovery/README.md | 6 + 25 files changed, 568 insertions(+), 1 deletion(-) create mode 100644 AboutCE.md create mode 100644 CODE_OF_CONDUCT.md create mode 100644 LICENSE.md create mode 100644 contact.md create mode 100644 contents.md create mode 100644 docs/.gitignore create mode 100644 docs/404.html create mode 100644 docs/Gemfile create mode 100644 docs/README.md create mode 100644 docs/_config.yml create mode 100644 docs/_includes/head_custom.html create mode 100644 docs/_includes/mermaid.html create mode 100644 docs/citizen-experience/reference-architecture/README.md create mode 100644 docs/digital-health-check/README.md create mode 100644 docs/digital-health-check/discovery-technical.md create mode 100644 docs/gov/readme.md create mode 100644 docs/index.md create mode 100644 docs/nhs-account/README.md create mode 100644 docs/nhs-account/nhs-proxy/README.md create mode 100644 docs/nhs-account/what-is-account.md create mode 100644 docs/process/git.md create mode 100644 docs/robots.txt create mode 100644 docs/the-teams/README.md create mode 100644 source/projects/digital-health-check/discovery/README.md diff --git a/AboutCE.md b/AboutCE.md new file mode 100644 index 0000000..09a6192 --- /dev/null +++ b/AboutCE.md @@ -0,0 +1,8 @@ +> ⚠️ **Warning** +> +> **Draft Documents**: May not represent real world scenarios, may not be fully accurate or complete. +> +> Please contact the author for more information. + + +# About Citizen Experience diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..28be926 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,2 @@ +# The NHS constitutional values +https://www.hee.nhs.uk/about/our-values/nhs-constitutional-values-hub-0 \ No newline at end of file diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..8123163 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,69 @@ +Open Government Licence v3.0 + +You are encouraged to use and re-use the Information that is available under this licence freely and flexibly, with only a few conditions. + +Using Information under this licence +Use of copyright and database right material expressly made available under this licence (the 'Information') indicates your acceptance of the terms and conditions below. + +The Licensor grants you a worldwide, royalty-free, perpetual, non-exclusive licence to use the Information subject to the conditions below. + +This licence does not affect your freedom under fair dealing or fair use or any other copyright or database right exceptions and limitations. + +You are free to: +copy, publish, distribute and transmit the Information; +adapt the Information; +exploit the Information commercially and non-commercially for example, by combining it with other Information, or by including it in your own product or application. +You must (where you do any of the above): +acknowledge the source of the Information in your product or application by including or linking to any attribution statement specified by the Information Provider(s) and, where possible, provide a link to this licence; + If the Information Provider does not provide a specific attribution statement, you must use the following: + + Contains public sector information licensed under the Open Government Licence v3.0. + +If you are using Information from several Information Providers and listing multiple attributions is not practical in your product or application, you may include a URI or hyperlink to a resource that contains the required attribution statements. + +These are important conditions of this licence and if you fail to comply with them the rights granted to you under this licence, or any similar licence granted by the Licensor, will end automatically. + + Exemptions +This licence does not cover: + +personal data in the Information; +Information that has not been accessed by way of publication or disclosure under information access legislation (including the Freedom of Information Acts for the UK and Scotland) by or with the consent of the Information Provider; +departmental or public sector organisation logos, crests and the Royal Arms except where they form an integral part of a document or dataset; +military insignia; +third party rights the Information Provider is not authorised to license; +other intellectual property rights, including patents, trade marks, and design rights; and +identity documents such as the British Passport +Non-endorsement +This licence does not grant you any right to use the Information in a way that suggests any official status or that the Information Provider and/or Licensor endorse you or your use of the Information. + +No warranty +The Information is licensed 'as is' and the Information Provider and/or Licensor excludes all representations, warranties, obligations and liabilities in relation to the Information to the maximum extent permitted by law. + +The Information Provider and/or Licensor are not liable for any errors or omissions in the Information and shall not be liable for any loss, injury or damage of any kind caused by its use. The Information Provider does not guarantee the continued supply of the Information. + +Governing Law +This licence is governed by the laws of the jurisdiction in which the Information Provider has its principal place of business, unless otherwise specified by the Information Provider. + +Definitions +In this licence, the terms below have the following meanings: + +'Information' means information protected by copyright or by database right (for example, literary and artistic works, content, data and source code) offered for use under the terms of this licence. + +'Information Provider' means the person or organisation providing the Information under this licence. + +'Licensor' means any Information Provider which has the authority to offer Information under the terms of this licence or the Keeper of Public Records, who has the authority to offer Information subject to Crown copyright and Crown database rights and Information subject to copyright and database right that has been assigned to or acquired by the Crown, under the terms of this licence. + +'Use' means doing any act which is restricted by copyright or database right, whether in the original medium or in any other medium, and includes without limitation distributing, copying, adapting, modifying as may be technically necessary to use it in a different mode or format. + +'You', 'you' and 'your' means the natural or legal person, or body of persons corporate or incorporate, acquiring rights in the Information (whether the Information is obtained directly from the Licensor or otherwise) under this licence. + +About the Open Government Licence +The National Archives has developed this licence as a tool to enable Information Providers in the public sector to license the use and re-use of their Information under a common open licence. The National Archives invites public sector bodies owning their own copyright and database rights to permit the use of their Information under this licence. + +The Keeper of the Public Records has authority to license Information subject to copyright and database right owned by the Crown. The extent of the offer to license this Information under the terms of this licence is set out in the UK Government Licensing Framework. + +This is version 3.0 of the Open Government Licence. The National Archives may, from time to time, issue new versions of the Open Government Licence. If you are already using Information under a previous version of the Open Government Licence, the terms of that licence will continue to apply. + +These terms are compatible with the Creative Commons Attribution License 4.0 and the Open Data Commons Attribution License, both of which license copyright and database rights. This means that when the Information is adapted and licensed under either of those licences, you automatically satisfy the conditions of the OGL when you comply with the other licence. The OGLv3.0 is Open Definition compliant. + +Further context, best practice and guidance can be found in the UK Government Licensing Framework section on The National Archives website. \ No newline at end of file diff --git a/README.md b/README.md index 05b7c88..fc98109 100644 --- a/README.md +++ b/README.md @@ -1 +1,9 @@ -# architecture-design-docs \ No newline at end of file +> ⚠️ **Warning** +> +> **Draft Documents**: May not represent real world scenarios, may not be fully accurate or complete. +> +> Please contact the author for more information. + +# Citizen Experience + +[See docs](/docs/README.md) \ No newline at end of file diff --git a/contact.md b/contact.md new file mode 100644 index 0000000..852120b --- /dev/null +++ b/contact.md @@ -0,0 +1,13 @@ +> ⚠️ **Warning** +> +> **Draft Documents**: May not represent real world scenarios, may not be fully accurate or complete. +> +> Please contact the author for more information. + +# Fallback contact +Ross Buggins | Citizen Experience | NHSE/I + +[Git Hub Contact me](https://github.com/RossBugginsNHS/contact-me/issues/new?assignees=RossBugginsNHS&labels=contact&template=contact-me-template.yaml&title=%5BContact%5D%3A+Citizen%20Experience%20Contact) + +ross.buggins@nhs.net + diff --git a/contents.md b/contents.md new file mode 100644 index 0000000..e69de29 diff --git a/docs/.gitignore b/docs/.gitignore new file mode 100644 index 0000000..2490bf8 --- /dev/null +++ b/docs/.gitignore @@ -0,0 +1,7 @@ +_site +.sass-cache +.jekyll-cache +.jekyll-metadata +vendor +.lock +Gemfile.lock diff --git a/docs/404.html b/docs/404.html new file mode 100644 index 0000000..086a5c9 --- /dev/null +++ b/docs/404.html @@ -0,0 +1,25 @@ +--- +permalink: /404.html +layout: default +--- + + + +
+

404

+ +

Page not found :(

+

The requested page could not be found.

+
diff --git a/docs/Gemfile b/docs/Gemfile new file mode 100644 index 0000000..896f639 --- /dev/null +++ b/docs/Gemfile @@ -0,0 +1,35 @@ +source "https://rubygems.org" +# Hello! This is where you manage which Jekyll version is used to run. +# When you want to use a different version, change it below, save the +# file and run `bundle install`. Run Jekyll with `bundle exec`, like so: +# +# bundle exec jekyll serve +# +# This will help ensure the proper Jekyll version is running. +# Happy Jekylling! +gem "jekyll", "~> 4.2.2" +# This is the default theme for new Jekyll sites. You may change this to anything you like. +#gem "minima", "~> 2.5" +gem "just-the-docs" +# If you want to use GitHub Pages, remove the "gem "jekyll"" above and +# uncomment the line below. To upgrade, run `bundle update github-pages`. +# gem "github-pages", group: :jekyll_plugins +# If you have any plugins, put them here! +group :jekyll_plugins do + gem "jekyll-feed", "~> 0.12" + #gem "jekyll-drawio", "~> 0.0.6", path: "/home/rb/source/jekyll-drawio" +end + +# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem +# and associated library. +platforms :mingw, :x64_mingw, :mswin, :jruby do + gem "tzinfo", "~> 1.2" + gem "tzinfo-data" +end + +# Performance-booster for watching directories on Windows +gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin] + +# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem +# do not have a Java counterpart. +gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby] diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 0000000..13b4a3e --- /dev/null +++ b/docs/README.md @@ -0,0 +1 @@ +[See docs](/docs/index.md) \ No newline at end of file diff --git a/docs/_config.yml b/docs/_config.yml new file mode 100644 index 0000000..d444c3b --- /dev/null +++ b/docs/_config.yml @@ -0,0 +1,55 @@ +# Welcome to Jekyll! +# +# This config file is meant for settings that affect your whole blog, values +# which you are expected to set up once and rarely edit after that. If you find +# yourself editing this file very often, consider using Jekyll's data files +# feature for the data you need to update frequently. +# +# For technical reasons, this file is *NOT* reloaded automatically when you use +# 'bundle exec jekyll serve'. If you change this file, please restart the server process. +# +# If you need help with YAML syntax, here are some quick references for you: +# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml +# https://learnxinyminutes.com/docs/yaml/ +# +# Site settings +# These are used to personalize your new site. If you look in the HTML files, +# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. +# You can create any custom variable you would like, and they will be accessible +# in the templates via {{ site.myvariable }}. + +title: NHS Citizen Experience - NHS Transformation Directorate, NHS England and Improvement +email: +description: >- # this means to ignore newlines until "baseurl:" + Give patients, service users and carers the tools to access information and services directly +baseurl: "" # the subpath of your site, e.g. /blog +url: "" # the base hostname & protocol for your site, e.g. http://example.com +twitter_username: +github_username: nhsexperience + +# Build settings +theme: just-the-docs +plugins: + - jekyll-feed + + + +# Exclude from processing. +# The following items will not be processed, by default. +# Any item listed under the `exclude:` key here will be automatically added to +# the internal "default list". +# +# Excluded items can be processed by explicitly listing the directories or +# their entries' file path in the `include:` list. +# +# exclude: +# - .sass-cache/ +# - .jekyll-cache/ +# - gemfiles/ +# - Gemfile +# - Gemfile.lock +# - node_modules/ +# - vendor/bundle/ +# - vendor/cache/ +# - vendor/gems/ +# - vendor/ruby/ diff --git a/docs/_includes/head_custom.html b/docs/_includes/head_custom.html new file mode 100644 index 0000000..5d47e25 --- /dev/null +++ b/docs/_includes/head_custom.html @@ -0,0 +1,4 @@ +{% if page.mermaid %} +{% include mermaid.html %} +{% endif %} + diff --git a/docs/_includes/mermaid.html b/docs/_includes/mermaid.html new file mode 100644 index 0000000..00e08d9 --- /dev/null +++ b/docs/_includes/mermaid.html @@ -0,0 +1,10 @@ + + \ No newline at end of file diff --git a/docs/citizen-experience/reference-architecture/README.md b/docs/citizen-experience/reference-architecture/README.md new file mode 100644 index 0000000..0b8e5b0 --- /dev/null +++ b/docs/citizen-experience/reference-architecture/README.md @@ -0,0 +1,22 @@ +--- +title: Reference Architecture +layout: page +permalink: /ref-arch/ +nav_order: 4 +--- + + +> ⚠️ **Warning** +> +> **Draft Documents**: May not represent real world scenarios, may not be fully accurate or complete. +> +> Please contact the author for more information. + +# Architectural Guidelines + +# APIs +## Performance + +# UIs + +# Services diff --git a/docs/digital-health-check/README.md b/docs/digital-health-check/README.md new file mode 100644 index 0000000..2280795 --- /dev/null +++ b/docs/digital-health-check/README.md @@ -0,0 +1,33 @@ +--- +title: NHS Digital Health Check +layout: page +permalink: /healthcheck/index.html +has_children: true +nav_order: 3 +--- + +> ⚠️ **Warning** +> +> **Draft Documents**: May not represent real world scenarios, may not be fully accurate or complete. +> +> Please contact the author for more information. + + +# Digital Health Check + +## Mandate - Why this is being done? + +## Current Status + +| Stage | Date Started | Est End Date | End Date | +| --------- | ------------ | ------------ | -------- | +| Discovery | June 2022 | August 2022 | | + +## Discovery + + +## Alpha + +## Beta + +## Production \ No newline at end of file diff --git a/docs/digital-health-check/discovery-technical.md b/docs/digital-health-check/discovery-technical.md new file mode 100644 index 0000000..478ef64 --- /dev/null +++ b/docs/digital-health-check/discovery-technical.md @@ -0,0 +1,13 @@ +--- +title: DHC Discovery - Technical +layout: page +permalink: /healthcheck/discovery-technical.html +parent: NHS Digital Health Check +nav_order: 2 +--- + +> ⚠️ **Warning** +> +> **Draft Documents**: May not represent real world scenarios, may not be fully accurate or complete. +> +> Please contact the author for more information. \ No newline at end of file diff --git a/docs/gov/readme.md b/docs/gov/readme.md new file mode 100644 index 0000000..74f8575 --- /dev/null +++ b/docs/gov/readme.md @@ -0,0 +1,7 @@ +--- +title: Goverment Process +layout: page +nav_order: 6 +--- + +- Gov.uk agile process - https://www.gov.uk/service-manual/agile-delivery \ No newline at end of file diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..26b2517 --- /dev/null +++ b/docs/index.md @@ -0,0 +1,33 @@ +--- +title: Home +layout: home +nav_order: 1 +--- +> ⚠️ **Warning** +> +> **Draft Documents**: May not represent real world scenarios, may not be fully accurate or complete. +> +> Please contact the author for more information. +# Todo: + +- Add documentation framework +- Auto build .drawio to .svg + +# Citizen Experience + +## Open Source Location + +| | Source and build details | +| :------------------------ | :----------------------------------------------- | +| Owner | nhsexperience | +| Repo | nhs-experience | +| Branch | main | +| Link | https://github.com/nhsexperience/nhs-experience/ | +| Site | n/a | +| Latest Release | Test release v0.1.0-alpha | +| Latest Release Tag | v0.1.0-alpha | +| Latest Stable Release | n/a | +| Latest Stable Release Tag | n/a | + +- [Latest Release](https://github.com/nhsexperience/nhs-experience/releases/latest) +- ![Azure CI/CD](https://github.com/nhsexperience/nhs-experience/actions/workflows/[FILENAMEHERE]/badge.svg?branch=initial-setup) diff --git a/docs/nhs-account/README.md b/docs/nhs-account/README.md new file mode 100644 index 0000000..1652d67 --- /dev/null +++ b/docs/nhs-account/README.md @@ -0,0 +1,146 @@ +--- +title: NHS Account +layout: page +permalink: /account/ +has_children: true +nav_order: 2 +--- + +> ⚠️ **Warning** +> +> **Draft Documents**: May not represent real world scenarios, may not be fully accurate or complete. +> +> Please contact the author for more information. + +![alt text](/nhs-account/nhs-account.svg) + +- [NHS Account](#nhs-account) +- [Defining Problem Statement](#defining-problem-statement) + - [What's the current state?](#whats-the-current-state) + - [Whats the desired state?](#whats-the-desired-state) + - [Problem Definition](#problem-definition) + - [Key measurables](#key-measurables) + - [What is envisioned for NHS Account?](#what-is-envisioned-for-nhs-account) + - [User Controlled Consent - Empower the patient](#user-controlled-consent---empower-the-patient) + - [How to best Model Access to Data](#how-to-best-model-access-to-data) + - [API Design](#api-design) + - [Back End Design](#back-end-design) + - [Authentication](#authentication) + - [Authorisation](#authorisation) + - [Decentralised Identity / Verifyable Credentials](#decentralised-identity--verifyable-credentials) + - [API Management](#api-management) + - [API Resource Design](#api-resource-design) + - [Resource User Access Control](#resource-user-access-control) + - [Application Management](#application-management) + - [Distributed Identity](#distributed-identity) + - [Proxy Delegated Access](#proxy-delegated-access) + - [Service Application Design](#service-application-design) + - [Eventual Consistency](#eventual-consistency) + - [Idempotency](#idempotency) + - [Commands](#commands) + - [Event Sourcing / CQRS](#event-sourcing--cqrs) + - [Event Store](#event-store) + - [Message Bus](#message-bus) + - [Distributed Actor](#distributed-actor) + - [Micro Services](#micro-services) + - [Tartget API Times](#tartget-api-times) + - [Support RESTful Endeavour (Promise) Pattern](#support-restful-endeavour-promise-pattern) + - [Monitoring and Metrics](#monitoring-and-metrics) + - [The Four Golden Signals](#the-four-golden-signals) + - [Logging](#logging) + +# NHS Account + +Github + +[What is account?][what-is-account] + + +Web + +[What is account?]({% link nhs-account/what-is-account.md %}) + + +# Defining Problem Statement + +## What's the current state? + +## Whats the desired state? + +### Problem Definition + +#### Key measurables + +## What is envisioned for NHS Account? + + + +## User Controlled Consent - Empower the patient + +## How to best Model Access to Data + +## API Design + +## Back End Design + +## Authentication + +## Authorisation + +## Decentralised Identity / Verifyable Credentials + +## API Management + +## API Resource Design +- FHIR vs not FHIR + +## Resource User Access Control + +## Application Management + +## Distributed Identity + +## Proxy Delegated Access + +## Service Application Design + +## Eventual Consistency + +## Idempotency + +## Commands + +## Event Sourcing / CQRS + +### Event Store + +## Message Bus + +## Distributed Actor + +## Micro Services + +## Tartget API Times +- Max for any GET - xx ms +- Max for any POST - xx ms +- Max for and PUT - xx ms + +### Support RESTful Endeavour (Promise) Pattern +- Utilise Event Sourcing and 202 / 201 HTTP Status codes instead of just a POST returning a 200. + +## Monitoring and Metrics + +### The Four Golden Signals +The four golden signals of monitoring are latency, traffic, errors, and saturation. If you can only measure four metrics of your user-facing system, focus on these four. + +- Latency +- Traffic +- Errors +- Saturation + +https://sre.google/sre-book/monitoring-distributed-systems/#xref_monitoring_golden-signals + +## Logging + + +[what-is-account]: what-is-account.md "What is account" \ No newline at end of file diff --git a/docs/nhs-account/nhs-proxy/README.md b/docs/nhs-account/nhs-proxy/README.md new file mode 100644 index 0000000..d6b0507 --- /dev/null +++ b/docs/nhs-account/nhs-proxy/README.md @@ -0,0 +1,19 @@ +--- +title: NHS Account Proxy +layout: page +permalink: /account/p/ +has_children: true +parent: NHS Account +nav_order: 2 +--- + + +> ⚠️ **Warning** +> +> **Draft Documents**: May not represent real world scenarios, may not be fully accurate or complete. +> +> Please contact the author for more information. + +# What is NHS Proxy? + + diff --git a/docs/nhs-account/what-is-account.md b/docs/nhs-account/what-is-account.md new file mode 100644 index 0000000..ddbea05 --- /dev/null +++ b/docs/nhs-account/what-is-account.md @@ -0,0 +1,15 @@ +--- +title: What is account +layout: page +permalink: /account/what-it-is.html +parent: NHS Account +nav_order: 2 +--- + + +> ⚠️ **Warning** +> +> **Draft Documents**: May not represent real world scenarios, may not be fully accurate or complete. +> +> Please contact the author for more information. + diff --git a/docs/process/git.md b/docs/process/git.md new file mode 100644 index 0000000..04d035d --- /dev/null +++ b/docs/process/git.md @@ -0,0 +1,14 @@ +--- +title: Git Process +layout: home +nav_order: 7 +--- + +Main Repo +https://github.com/nhsexperience/nhs-experience + +# Main Branch + +# Releases + +# Builds \ No newline at end of file diff --git a/docs/robots.txt b/docs/robots.txt new file mode 100644 index 0000000..77470cb --- /dev/null +++ b/docs/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Disallow: / \ No newline at end of file diff --git a/docs/the-teams/README.md b/docs/the-teams/README.md new file mode 100644 index 0000000..15562e3 --- /dev/null +++ b/docs/the-teams/README.md @@ -0,0 +1,20 @@ +--- +title: The teams +layout: page +--- + +# Home + +> ⚠️ **Warning** +> +> **Draft Documents**: May not represent real world scenarios, may not be fully accurate or complete. +> +> Please contact the author for more information. + +# Citizen Experience + +## Digital Channels + +## NHS Account + +## Wellness and Prevention \ No newline at end of file diff --git a/source/projects/digital-health-check/discovery/README.md b/source/projects/digital-health-check/discovery/README.md new file mode 100644 index 0000000..0776acb --- /dev/null +++ b/source/projects/digital-health-check/discovery/README.md @@ -0,0 +1,6 @@ +|**Warning**| +|--| +|⚠️ **Draft Documents**: May not represent real world scenarios or be accurate| +|--| + +# Digital Health Check - Discovery \ No newline at end of file