generated from NHSDigital/nhs-notify-repository-template
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Workspace name, prebuilt devcontainer, livereload (#39)
* Changed to project and removed live reload. Updated to use pre built dev container. * correct open file for index. * Remove sonar properties file as should get from env vars on action. * Versioning and make file. * hide node modules. * Remove versions from git. * remove ignore for old workspace file. * Add codespaces extension. * Worspaces already there. * gem lock spacing. * Added ruby lsp. * Added gem file to editor ignore. * Use make build in pipeline build. * Added config to point to install in docs makefile. * Upped Pa11y version. * Upped ruby version in build. * Upped gitleaks version. * pa11y version * pa11y override. * pa11y as override only.
- Loading branch information
1 parent
705732b
commit 7a26ec9
Showing
23 changed files
with
1,547 additions
and
399 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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 was deleted.
Oops, something went wrong.
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,19 @@ | ||
{ | ||
"files.exclude": { | ||
"**/.git": true, | ||
"**/.svn": true, | ||
"**/.hg": true, | ||
"**/CVS": true, | ||
"**/.DS_Store": true, | ||
"**/Thumbs.db": true, | ||
"**/.ruby-lsp": true, | ||
"docs": true, | ||
".devcontainer": true, | ||
".github": true, | ||
".vscode": false, | ||
"infrastructure": true, | ||
"scripts": true, | ||
"terraform": true, | ||
"tests": true | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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 +1 @@ | ||
${yyyy}${mm}${dd} | ||
0.0.1-${yyyy}${mm}${dd}.${HH}${MM}${SS}+${hash} |
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 |
---|---|---|
|
@@ -5,4 +5,4 @@ _site | |
vendor | ||
.bundle | ||
node_modules | ||
#Gemfile.lock | ||
_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,15 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Debug Web CMS", | ||
"console": "integratedTerminal", | ||
"name": "Debug", | ||
"preLaunchTask": "stop-already-running", | ||
"request": "launch", | ||
"runtimeArgs": ["run-script", "debug"], | ||
"runtimeExecutable": "npm", | ||
"runtimeArgs": ["debug"], | ||
"runtimeExecutable": "make", | ||
"skipFiles": ["<node_internals>/**"], | ||
"type": "node", | ||
"preLaunchTask": "stop-already-running", | ||
"console": "integratedTerminal" | ||
"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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"files.exclude": { | ||
"**/.git": true, | ||
"**/.svn": true, | ||
"**/.hg": true, | ||
"**/CVS": true, | ||
"**/.DS_Store": true, | ||
"**/Thumbs.db": true, | ||
"**/.ruby-lsp": true, | ||
"_site": true, | ||
".jekyll-cache": true, | ||
".bundle": true, | ||
"vendor": true, | ||
"node_modules": 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 |
---|---|---|
@@ -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.