Git Product home page Git Product logo

play_backend's Introduction

Play Backend

This repo acts as a play backend for you to familiarize yourself with different API endpoints. The routes below outline the different endpoints you can hit.

Set Up Instructions

  1. fork and or clone this repository.
  2. cd into the repo and then cd into the backend folder.
  3. run npm install
  4. Make sure you have Postgres running.
  5. run psql -f db/schema.sql
  6. run node app.js

Users have the following properties:

  • id INTEGER (don't include this on post requests)
  • username TEXT

Cars have the following properties:

  • id INTEGER (don't include this on post requests)
  • brand TEX
  • model TEXT
  • year INTEGER
  • owner_id points to a users id.

All routes need to start with http://localhost:3000

  • /cars - get all cars GET

  • /cars/:id - get single car GET

  • /cars - create car POST

  • /cars/:id - delete car DELETE

  • /cars/:id - update car PUT

  • /cars/:id - update only a specific car feature PATCH

  • /users - get all users GET

  • /users/:id - get single user GET

  • /users/:id - delete single user DELETE

  • /users - create user POST

  • /users/:id/cars - get all cars for a specific user GET

play_backend's People

Contributors

coreyladovsky 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.