mirror of
https://github.com/lukevella/rallly.git
synced 2025-06-02 18:51:52 +02:00
- added notifications - added toggle switches - added delete feature - added email verification
8 lines
285 B
JavaScript
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');
|
|
};
|