Code Monkey home page Code Monkey logo

codercars_be's Introduction

CoderCars Backend

Instructions

  1. Clone the branch template.
  2. Rename .env.example to .env and supply your own MongoDB URI or leave as is to use your local MongoDB URI.
  3. Based on the provided schema, parse and import the data frorm this dataset into your database.
  4. Fill in the missing logic in the controller. Remember to consider and handle all possible errors.
  5. Test and make sure it works with the provided frontend.

Requirements

CREATE

POST /car Expected body of request:

{
    "make": "Plymouth",
    "model": "Colt",
    "release_date": 2002,
    "transmission_type": "MANUAL",
    "size": "Compact",
    "style": "Coupe",
    "price": 23000
}

Expected response:

{
    "message": "Create Car Successfully!",
    "car": {
        "make": "Plymouth",
        "model": "Colt",
        "release_date": 2002,
        "transmission_type": "MANUAL",
        "size": "Compact",
        "style": "Coupe",
        "price": 23000,
    }
}

READ

GET /car

Expected response:

{
    "message": "Get Car List Successfully!",
    "cars": [
        //car objects
    ],
    "page": 1,
    // total pages
    "total": 1192
}

UPDATE

PUT /car/:id

Expected response:

{
    "message": "Update Car Successfully!",
    {
    //car object
    }
}

DELETE

DELETE /car/:id

Expected response:

{
    "message": "Delete Car Successfully!",
    {
    //car object
    }
}

codercars_be's People

Contributors

lephuthuc2001 avatar lukehoang1905 avatar eatmoarrice avatar

Watchers

 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.