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] 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