From 1d4a2588739cc038e4063e9a53da360123be9f3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20Adel=C3=B6w?= Date: Tue, 27 Sep 2022 09:37:36 +0200 Subject: [PATCH 1/2] just another gitignore entry MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fredrik Adelöw --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 256cef00c2..b7bfe7a84d 100644 --- a/.gitignore +++ b/.gitignore @@ -149,3 +149,6 @@ cypress/cypress/* # Possible leftover from build:api-reports tsconfig.tmp.json + +# vscode database functionality support files +*.session.sql From 52f25858a813abaf23cb374347e8aa5d6e29abd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20Adel=C3=B6w?= Date: Tue, 27 Sep 2022 11:14:27 +0200 Subject: [PATCH 2/2] create-app too MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fredrik Adelöw --- .changeset/tender-parrots-peel.md | 5 +++++ packages/create-app/templates/default-app/.gitignore.hbs | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 .changeset/tender-parrots-peel.md diff --git a/.changeset/tender-parrots-peel.md b/.changeset/tender-parrots-peel.md new file mode 100644 index 0000000000..566467e143 --- /dev/null +++ b/.changeset/tender-parrots-peel.md @@ -0,0 +1,5 @@ +--- +'@backstage/create-app': patch +--- + +Added `*.session.sql` Visual Studio Code database functionality files to `.gitignore` in the default template. This is optional but potentially helpful if your developers use Visual Studio Code; you can add a line with that exact value to your own root `.gitignore` if you want the same. diff --git a/packages/create-app/templates/default-app/.gitignore.hbs b/packages/create-app/templates/default-app/.gitignore.hbs index fdc2a5dfb2..d452ac2932 100644 --- a/packages/create-app/templates/default-app/.gitignore.hbs +++ b/packages/create-app/templates/default-app/.gitignore.hbs @@ -46,3 +46,6 @@ site # Sensitive credentials *-credentials.yaml + +# vscode database functionality support files +*.session.sql