From 36cfc317a41beb22859cdc229c52db5d4a05d74b Mon Sep 17 00:00:00 2001 From: Simon Larsen Date: Thu, 28 Sep 2023 18:57:15 +0100 Subject: [PATCH] fix typo in file --- Tests/.dockerignore | 56 +++++++++++++++++++++++++ Tests/.gitignore | 15 +++++++ Tests/{Dockefile.tpl => Dockerfile.tpl} | 0 3 files changed, 71 insertions(+) create mode 100644 Tests/.dockerignore create mode 100644 Tests/.gitignore rename Tests/{Dockefile.tpl => Dockerfile.tpl} (100%) diff --git a/Tests/.dockerignore b/Tests/.dockerignore new file mode 100644 index 0000000000..3ff05dd7b8 --- /dev/null +++ b/Tests/.dockerignore @@ -0,0 +1,56 @@ +.git + +node_modules +# See https://help.github.com/ignore-files/ for more about ignoring files. + +# dependencies +/node_modules +node_modules + +.idea +# testing +/coverage + +# production +/build + +# misc +.DS_Store + +env.js + +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +yarn.lock +Untitled-1 +*.local.sh +*.local.yaml +run +stop + +nohup.out* + +encrypted-credentials.tar +encrypted-credentials/ + +_README.md + +# Important Add production values to gitignore. +values-saas-production.yaml +kubernetes/values-saas-production.yaml + +/private + +/tls_cert.pem +/tls_key.pem +/keys + +temp_readme.md + +tests/coverage + +settings.json + +GoSDK/tester/ \ No newline at end of file diff --git a/Tests/.gitignore b/Tests/.gitignore new file mode 100644 index 0000000000..8f3265a3a0 --- /dev/null +++ b/Tests/.gitignore @@ -0,0 +1,15 @@ +# See https://help.github.com/ignore-files/ for more about ignoring files. + +# dependencies +/node_modules +node_modules +.idea + +# misc +.DS_Store + + +npm-debug.log* +yarn-debug.log* +yarn-error.log* +yarn.lock \ No newline at end of file diff --git a/Tests/Dockefile.tpl b/Tests/Dockerfile.tpl similarity index 100% rename from Tests/Dockefile.tpl rename to Tests/Dockerfile.tpl