Untracked Config File

This commit is contained in:
Luke Vella 2015-01-27 17:56:21 +01:00
parent c74b397836
commit aaf75b4402
17 changed files with 234 additions and 147 deletions

View file

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