mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-03 04:06:06 +02:00
11 lines
327 B
JavaScript
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','');
|
|
};
|