Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 557 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 557 Bytes

Backend

Getting started

  1. Optionally Install Node Tools for Visual Studio
  2. git clone https://github.com/Xignal/Backend.git
  3. cd ./Backend
  4. npm install sails
  5. sails lift
  6. 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.