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();