rallly/config/main.sample.js
2015-01-27 20:15:02 +01:00

11 lines
327 B
JavaScript

module.exports = function(app){
app.set('port', 3000);
app.set('siteUrl', '');
app.set('absoluteUrl', function(path){
return app.get('siteUrl') + ':' + app.get('port') + '/' + path;
});
app.set('dbname', '');
app.set('dbuser', '');
app.set('dbpwd', '');
app.set('mandrillAPIKey','');
};