From 30b04e82fa1e36f4b4bf62770ae69a57a33564fe Mon Sep 17 00:00:00 2001 From: Matt Henderson Date: Thu, 6 May 2021 17:43:24 -0400 Subject: [PATCH 1/2] Ignore more files that shouldn't be committed to version control --- .gitignore | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitignore b/.gitignore index 6452b78..5da9419 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,15 @@ jspm_packages # Temporary copy of backups (used during Disaster Recovery) /recovery/TempCopyOfBackups + +# JS files generated or copied during local development (see Makefile) +/development/site/client-bundle.js +/development/site/psl.min.js +/development/site/webauthn-client.js + +# Folder with cert files used for dev-server https-proxy / traefik +development/cert + +# Local environment variables files, typically with secrets +local.env +*.local.env From e9f8df72c9888dbbe290a596009dc86fe73181ca Mon Sep 17 00:00:00 2001 From: Matt Henderson Date: Thu, 6 May 2021 17:53:00 -0400 Subject: [PATCH 2/2] Force Codeship to install Serverless 1.x, since that's what this uses --- codeship/setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeship/setup.sh b/codeship/setup.sh index 8f96aa1..9e90a59 100755 --- a/codeship/setup.sh +++ b/codeship/setup.sh @@ -3,5 +3,5 @@ # Exit script with error if any step fails. set -e -npm install -g serverless +npm install -g serverless@1 npm install