- git clone https://github.com/Xignal/App.git
- cd ./App/src
- npm install sails
- npm install sails-mongo
- create config/local.js with your secret DB settings (see example below)
- sails lift
// contents of local.js. Add your own secrets. This file will not be committed.
module.exports.connections = {
someMongodbServer: {
adapter: 'sails-mongo',
host: 'locahost',
port: 10001,
user: '',
password: '',
database: ''
}
};