Folder structure #398

Merged
bones7242 merged 76 commits from folder-structure into master 2018-03-20 00:01:08 +01:00
2 changed files with 8 additions and 0 deletions
Showing only changes of commit 4defa62d33 - Show all commits

1
.gitignore vendored
View file

@ -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

View file

@ -0,0 +1,7 @@
function SlackConfig () {
this.slackWebHook = null;
this.slackErrorChannel = null;
this.slackInfoChannel = null;
};
module.exports = new SlackConfig();