From 4defa62d33e538e5525c25f6fff466fa1d0a2e86 Mon Sep 17 00:00:00 2001 From: bill bittner Date: Mon, 19 Mar 2018 14:32:25 -0700 Subject: [PATCH] added slackconfig example --- .gitignore | 1 + devConfig/slackConfig.js.example | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 devConfig/slackConfig.js.example diff --git a/.gitignore b/.gitignore index 21a6d8fe..4e7cfe58 100644 --- a/.gitignore +++ b/.gitignore @@ -5,5 +5,6 @@ config/loggerConfig.js config/mysqlConfig.js config/siteConfig.js config/slackConfig.js +devConfig/slackConfig.js devConfig/sequelizeCliConfig.js devConfig/testingConfig.js diff --git a/devConfig/slackConfig.js.example b/devConfig/slackConfig.js.example new file mode 100644 index 00000000..718ecdb5 --- /dev/null +++ b/devConfig/slackConfig.js.example @@ -0,0 +1,7 @@ +function SlackConfig () { + this.slackWebHook = null; + this.slackErrorChannel = null; + this.slackInfoChannel = null; +}; + +module.exports = new SlackConfig();