├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── auto-review.yml │ ├── check-links.yml │ ├── dependency-review.yml │ ├── format-code.yml │ └── publish.yml ├── .gitignore ├── .lycheeignore ├── LICENSE ├── README.md ├── config └── tech-docs.yml ├── docs └── .gitkeep ├── makefile └── source ├── CNAME ├── documentation ├── principles │ ├── development-principles.html.md.erb │ └── frontend-development-principles.html.md.erb └── standards │ ├── code-freezes.html.md.erb │ ├── documenting-how-your-service-is-supported.html.md.erb │ ├── hosting.html.md.erb │ ├── images │ └── deceptive-site-alert.png │ ├── licencing-software-or-code.html.md.erb │ ├── naming-things.html.md.erb │ ├── out-of-hours.html.md.erb │ └── using-3rd-party-open-source-products.html.md.erb ├── index.html.md.erb ├── javascripts └── application.js └── stylesheets ├── print.css.scss ├── screen-old-ie.css.scss └── screen.css.scss /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | 2 | * @ministryofjustice/operations-engineering 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/technical-guidance/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/technical-guidance/HEAD/.github/workflows/auto-review.yml -------------------------------------------------------------------------------- /.github/workflows/check-links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/technical-guidance/HEAD/.github/workflows/check-links.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/technical-guidance/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/format-code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/technical-guidance/HEAD/.github/workflows/format-code.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/technical-guidance/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .idea/ 3 | -------------------------------------------------------------------------------- /.lycheeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/technical-guidance/HEAD/.lycheeignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/technical-guidance/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/technical-guidance/HEAD/README.md -------------------------------------------------------------------------------- /config/tech-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/technical-guidance/HEAD/config/tech-docs.yml -------------------------------------------------------------------------------- /docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/technical-guidance/HEAD/makefile -------------------------------------------------------------------------------- /source/CNAME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/technical-guidance/HEAD/source/CNAME -------------------------------------------------------------------------------- /source/documentation/principles/development-principles.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/technical-guidance/HEAD/source/documentation/principles/development-principles.html.md.erb -------------------------------------------------------------------------------- /source/documentation/principles/frontend-development-principles.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/technical-guidance/HEAD/source/documentation/principles/frontend-development-principles.html.md.erb -------------------------------------------------------------------------------- /source/documentation/standards/code-freezes.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/technical-guidance/HEAD/source/documentation/standards/code-freezes.html.md.erb -------------------------------------------------------------------------------- /source/documentation/standards/documenting-how-your-service-is-supported.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/technical-guidance/HEAD/source/documentation/standards/documenting-how-your-service-is-supported.html.md.erb -------------------------------------------------------------------------------- /source/documentation/standards/hosting.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/technical-guidance/HEAD/source/documentation/standards/hosting.html.md.erb -------------------------------------------------------------------------------- /source/documentation/standards/images/deceptive-site-alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/technical-guidance/HEAD/source/documentation/standards/images/deceptive-site-alert.png -------------------------------------------------------------------------------- /source/documentation/standards/licencing-software-or-code.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/technical-guidance/HEAD/source/documentation/standards/licencing-software-or-code.html.md.erb -------------------------------------------------------------------------------- /source/documentation/standards/naming-things.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/technical-guidance/HEAD/source/documentation/standards/naming-things.html.md.erb -------------------------------------------------------------------------------- /source/documentation/standards/out-of-hours.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/technical-guidance/HEAD/source/documentation/standards/out-of-hours.html.md.erb -------------------------------------------------------------------------------- /source/documentation/standards/using-3rd-party-open-source-products.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/technical-guidance/HEAD/source/documentation/standards/using-3rd-party-open-source-products.html.md.erb -------------------------------------------------------------------------------- /source/index.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/technical-guidance/HEAD/source/index.html.md.erb -------------------------------------------------------------------------------- /source/javascripts/application.js: -------------------------------------------------------------------------------- 1 | //= require govuk_tech_docs 2 | -------------------------------------------------------------------------------- /source/stylesheets/print.css.scss: -------------------------------------------------------------------------------- 1 | $is-print: true; 2 | 3 | @import "govuk_tech_docs"; 4 | -------------------------------------------------------------------------------- /source/stylesheets/screen-old-ie.css.scss: -------------------------------------------------------------------------------- 1 | $is-ie: true; 2 | $ie-version: 8; 3 | 4 | @import "govuk_tech_docs"; 5 | -------------------------------------------------------------------------------- /source/stylesheets/screen.css.scss: -------------------------------------------------------------------------------- 1 | @import "govuk_tech_docs"; 2 | --------------------------------------------------------------------------------