forked from NHSDigital/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from NHSDigital/rossbugginsnhs/2024-07-03-impo…
…rt-hw-and-internal Rossbugginsnhs/2024 07 03 import hw and internal
- Loading branch information
Showing
26 changed files
with
266 additions
and
151 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
FROM --platform=linux/amd64 mcr.microsoft.com/devcontainers/jekyll:2-bullseye |
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
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ runs: | |
- name: Setup Ruby | ||
uses: ruby/[email protected] | ||
with: | ||
ruby-version: "3.1" # Not needed with a .ruby-version file | ||
ruby-version: "3.2" # Not needed with a .ruby-version file | ||
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | ||
cache-version: 0 # Increment this number if you need to re-download cached gems | ||
working-directory: "./docs" | ||
|
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# SEE: https://github.com/gitleaks/gitleaks/blob/master/README.md#gitleaksignore | ||
|
||
cd9c0efec38c5d63053dd865e5d4e207c0760d91:docs/guides/Perform_static_analysis.md:generic-api-key:37 | ||
96096685ab3d6876671e2bc9a6ff4d48fc56e521:src/helloworld/helloworld.sln:ipv4:4 | ||
4f4e8c15629b2cb09356a7fed4d72953590227ce:docs/Gemfile.lock:ipv4:4 |
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 |
---|---|---|
@@ -1,19 +1,20 @@ | ||
{ | ||
"autoOpenWorkspace.enableAutoOpenIfSingleWorkspace": true, | ||
"files.exclude": { | ||
"**/.DS_Store": true, | ||
"**/.git": true, | ||
"**/.svn": true, | ||
"**/.hg": true, | ||
"**/.ruby-lsp": true, | ||
"**/.svn": true, | ||
"**/CVS": true, | ||
"**/.DS_Store": true, | ||
"**/Thumbs.db": true, | ||
"**/.ruby-lsp": true, | ||
"docs": true, | ||
".github": true, | ||
".devcontainer": true, | ||
".github": true, | ||
".vscode": false, | ||
"tests":true, | ||
"infrastructure":true, | ||
"scripts":true | ||
"docs": true, | ||
"infrastructure": true, | ||
"scripts": true, | ||
"terraform": true, | ||
"tests": true | ||
} | ||
} |
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,29 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
### Added | ||
|
||
### Changed | ||
|
||
### Removed | ||
|
||
### Deprecated | ||
|
||
### Fixed | ||
|
||
### Security | ||
|
||
## [0.0.1] - 2024-06-20 | ||
|
||
### Added | ||
|
||
- Initial release | ||
|
||
[unreleased]: https://github.com/NHSDigital/nhs-notify-internal/compare/v0.0.1...HEAD | ||
[0.0.1]: https://github.com/NHSDigital/nhs-notify-internal/releases/tag/v0.0.1 |
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 |
---|---|---|
|
@@ -2,6 +2,8 @@ _site | |
.sass-cache | ||
.jekyll-cache | ||
.jekyll-metadata | ||
.bundle | ||
vendor | ||
*Zone.Identifier | ||
node_modules | ||
_config.version.yml |
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 |
---|---|---|
@@ -1,15 +1,19 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"console": "integratedTerminal", | ||
"name": "Debug", | ||
"preLaunchTask": "stop-already-running", | ||
"request": "launch", | ||
"runtimeArgs": ["debug"], | ||
"runtimeArgs": [ | ||
"debug" | ||
], | ||
"runtimeExecutable": "make", | ||
"skipFiles": ["<node_internals>/**"], | ||
"type": "node", | ||
"preLaunchTask": "stop-already-running", | ||
"console": "integratedTerminal" | ||
"skipFiles": [ | ||
"<node_internals>/**" | ||
], | ||
"type": "node" | ||
} | ||
] | ||
], | ||
"version": "0.2.0" | ||
} |
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"command": "kill $(lsof -ti :4000); exit 0;", | ||
"label": "stop-already-running", | ||
"options": { | ||
"cwd": "${workspaceFolder}" | ||
}, | ||
"command": "kill $(lsof -ti :4000); exit 0;", | ||
"type": "shell" | ||
} | ||
] | ||
], | ||
"version": "2.0.0" | ||
} |
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
Oops, something went wrong.