From 5cef8d518a397f0ec06c86f9ed0e6f773d4f7b87 Mon Sep 17 00:00:00 2001 From: Michael Pfister Date: Thu, 13 Oct 2016 17:20:26 -0700 Subject: [PATCH] update gitignore, add config template --- .gitignore | 2 ++ config.js => config.js.template | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) rename config.js => config.js.template (56%) diff --git a/.gitignore b/.gitignore index 9e48c39..d4f6818 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,5 @@ /node_modules /dump.rdb /database.sqlite +config.js +npm-debug.log diff --git a/config.js b/config.js.template similarity index 56% rename from config.js rename to config.js.template index b5b8645..e0d1782 100644 --- a/config.js +++ b/config.js.template @@ -1,7 +1,7 @@ // Rename this file to config.js and then add your client secret module.exports = { - NYLAS_APP_ID: '4z9rxuudj9ksyuee3jmeqlbto', - NYLAS_APP_SECRET: 'c5s2bwvchnnidm9rommrisqpf', + NYLAS_APP_ID: '', + NYLAS_APP_SECRET: '', HOST: '127.0.0.1', PORT: 1234, };