###Install and run the project:
- Fork a copy of the project and clone it down to your computer
- Run
npm install - Run
npm startto start the server - Start up or download postman: https://chrome.google.com/webstore/detail/postman/fhbjgbiflinjbdggehcddcbncdddomop?hl=en
###Tasks:
- Go to https://www.elephantsql.com/, sign up (it's free), then create a new database instance
- In your
db_config.jsfile, paste the instance url to your sequelize representation - In
db_config.js, create aUserstable - In
db_models.js, write two functions: 1)Add a user to the database 2) Get all users from the database
####Helpful Sequelize Links:
- Creating schema and available data types: http://docs.sequelizejs.com/en/v3/docs/models-definition/
- Querying your database: http://docs.sequelizejs.com/en/latest/api/model/