GithubHelp home page GithubHelp logo

lawyer-scoreboard's Introduction

lawyer-scoreboard

Start of the lawyer scoreboard project

##Objectives You're building an API that will list ratings/stats of lawyers. You'll use basic database architecture to create the Sequelize models that will drive your application.

###Step 1: Create the base of your project

  • Create a package.json file with the following dependencies:
    • mysql
    • sequelize
    • express
  • Create a server.js file
  • In your server.js file, require sequelize and initiate a new db connection to your local db
  • Using Sequel Pro, create a database called lawyer_scoreboard

###Step 2: Create the model

  • Create a Lawyer model, with the following fields:
    • name
    • location
    • record (wins/losses)
    • hourly rate
  • Using the Sequelize documentation as a resource (http://sequelizejs.com/documentation#models-data-types), decide which types of fields these should be
  • Make sure to sync() the models to the actual db

###Step 3: Create a simple GET endpoint /lawyers for retrieving lawyer rankings

  • Using Sequel Pro, insert some data into your lawyer table
  • Utilize Express to create a single GET endpoint for retrieving the lawyer data in JSON format
  • To retrieve the data, check out the .all() method for Sequelize models:
Lawyer.all().success(function(lawyers) {
  // lawyers will be an array of all Lawyer instances
})

lawyer-scoreboard's People

Contributors

cahlan avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.