mirror of
https://github.com/lukevella/rallly.git
synced 2025-06-14 16:41:48 +02:00
New Features
- added notifications - added toggle switches - added delete feature - added email verification
This commit is contained in:
parent
e61ef151f6
commit
1b20a11bba
91 changed files with 6859 additions and 2756 deletions
8
config/main.sample.js
Normal file
8
config/main.sample.js
Normal file
|
@ -0,0 +1,8 @@
|
|||
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',''); // Put your Mandrill API Key Here.
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue