New Features

- added notifications
- added toggle switches
- added delete feature
- added email verification
This commit is contained in:
Luke Vella 2015-01-26 13:11:48 +01:00
parent e61ef151f6
commit 1b20a11bba
91 changed files with 6859 additions and 2756 deletions

8
config/main.sample.js Normal file
View file

@ -0,0 +1,8 @@
module.exports = function(app){
app.set('port', 3000);
app.set('siteUrl', 'http://localhost');
app.set('absoluteUrl', function(path){
return app.get('siteUrl') + ':' + app.get('port') + '/' + path;
});
app.set('mandrillAPIKey',''); // Put your Mandrill API Key Here.
};