rallly/config/main.js
Luke Vella 1b20a11bba New Features
- added notifications
- added toggle switches
- added delete feature
- added email verification
2015-01-26 13:11:48 +01:00

8 lines
285 B
JavaScript

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','suEKoTkjRDeYie0Wd16Knw');
};