From 5ea30de6977a735a12fd26f27737c36cb486c7d6 Mon Sep 17 00:00:00 2001 From: Devon Mackay Date: Mon, 4 Jun 2018 17:13:11 -0400 Subject: [PATCH 1/3] Reorg and comment a bit; add variables.scss files to be ignored --- .gitignore | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 531502c4..9ff04e86 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,23 @@ +# Node modules get installed here node_modules/ -.sass-cache/ -static/fonts/* -.webassets-cache + +# sass and webassets output artifacts scss/assets -.pytest_cache/ +scss/variables.scss +scss/variables.scss.map +.sass-cache/ +.webassets-cache + +# Python virtual env .venv/ + +.pytest_cache/ __pycache__ + +# Compiled python bytecode files *.pyc -# Ignore static/fonts for now, since it is just symlink +# static/fonts for now, since it is just symlink static/fonts +# font files originate from a node module +static/fonts/* From e279883d9667c22dd65fd8d08f7c708159dfcc33 Mon Sep 17 00:00:00 2001 From: Devon Mackay Date: Mon, 4 Jun 2018 17:13:24 -0400 Subject: [PATCH 2/3] Add log directory --- log/.keep | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 log/.keep diff --git a/log/.keep b/log/.keep new file mode 100644 index 00000000..e69de29b From 0cde9f63fa0e042376f744334a72940a59f7e602 Mon Sep 17 00:00:00 2001 From: Devon Mackay Date: Mon, 4 Jun 2018 17:13:48 -0400 Subject: [PATCH 3/3] Ignore everything in /log --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 9ff04e86..33aa60ee 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,6 @@ __pycache__ static/fonts # font files originate from a node module static/fonts/* + +# local log files +log/*