added slackconfig example
This commit is contained in:
parent
cd51ae7db1
commit
4defa62d33
2 changed files with 8 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -5,5 +5,6 @@ config/loggerConfig.js
|
||||||
config/mysqlConfig.js
|
config/mysqlConfig.js
|
||||||
config/siteConfig.js
|
config/siteConfig.js
|
||||||
config/slackConfig.js
|
config/slackConfig.js
|
||||||
|
devConfig/slackConfig.js
|
||||||
devConfig/sequelizeCliConfig.js
|
devConfig/sequelizeCliConfig.js
|
||||||
devConfig/testingConfig.js
|
devConfig/testingConfig.js
|
||||||
|
|
7
devConfig/slackConfig.js.example
Normal file
7
devConfig/slackConfig.js.example
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
function SlackConfig () {
|
||||||
|
this.slackWebHook = null;
|
||||||
|
this.slackErrorChannel = null;
|
||||||
|
this.slackInfoChannel = null;
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = new SlackConfig();
|
Loading…
Reference in a new issue