From ccbad51ebdf2f5be2c99b5c8bd03b96a251c5230 Mon Sep 17 00:00:00 2001 From: Tom Byers Date: Mon, 2 Dec 2019 16:44:12 +0000 Subject: [PATCH] Move `app/.gitignore` entries to `.gitignore` `app/.gitignore` existed to list anything that we wanted ignored from the repository but not listed in `.cfignore` (which just symlinked the `.gitinore` at the root). Now `.gitignore` and `.cfignore` are split, this is no longer necessary. --- .gitignore | 2 ++ app/.gitignore | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) delete mode 100644 app/.gitignore diff --git a/.gitignore b/.gitignore index 2e35c0227..7826f245e 100644 --- a/.gitignore +++ b/.gitignore @@ -23,6 +23,7 @@ var/ .installed.cfg *.egg venv/ +app/version.py # PyInstaller # Usually these files are written by a python script from a template @@ -62,6 +63,7 @@ target/ .vscode # Frontend dependencies and compiled assets +app/static app/assets/stylesheets/govuk_template/.sass-cache/ .sass-cache/ cache/ diff --git a/app/.gitignore b/app/.gitignore deleted file mode 100644 index 191f96b65..000000000 --- a/app/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -/version.py -/static