- Optionally Install Node Tools for Visual Studio
- git clone https://github.com/Xignal/Backend.git
- cd ./Backend
- npm install sails
- sails lift
- create a
config/local.js
config file with your DB settings, e.g.
module.exports.connections = {
someMongodbServer: {
adapter: 'sails-mongo',
host: 'locahost',
port: 10001,
user: '',
password: '',
database: ''
}
};
Hit F5 in Visual Studio if you want run and debug in the IDE.