From 0507fbc0aed5a168d35d99d72b73274977d0ef18 Mon Sep 17 00:00:00 2001 From: BootCoder Date: Sat, 11 Mar 2017 23:47:03 -0800 Subject: [PATCH] add .env + /node_modules to gitignore_global --- .gitignore_global | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitignore_global b/.gitignore_global index a9ab298..db670cb 100644 --- a/.gitignore_global +++ b/.gitignore_global @@ -14,4 +14,10 @@ .Spotlight-V100 # .Trashes holds disk specific trash folders -.Trashes \ No newline at end of file +.Trashes + +# .env contains secret keys in conjunction with gems like dotenv and should never be pushed up +.env + +# Installation files for NPM. Generate your own using npm install +/node_modules