Giter Site home page Giter Site logo

kudos's Introduction

Kudos

CRUD project with Python BE, Flask framework, and React FE

User Stories

Backend Stories

  • As an authenticated user I want to favorite an github open source project
  • As an authenticated user I want to unfavorite an github open source project
  • As an authenticated user I want to list all bookmarked github open source projects I’ve previously favorited

Backend RESTful endpoints

  • A normal ReST API will expose endpoints so clients can create, update, delete, read and list all resources. By end of this section your back-end application will be capable to handle the following HTTP calls:
  • C reate is commonly associated with the HTTP POST method (response status of 201)
  • R ead is commonly associated with the HTTP GET method (response status of 200); Can be used to read a single object or retrieve all objects
  • U pdate is commonly associated with the HTTP PUT || PATCH methods (response status of 200); PUT == updates the entire object; PATCH == updates partial object
  • D elete is commonly associated with the HTTP DELETE method (response status of 204)
# For the authenticated user, fetches all favorited github open source projects (READ ALL)
GET /kudos

# Favorite a github open source project for the authenticated user (CREATE)
POST /kudos

# Unfavorite a favorited github open source project (DELETE)
DELETE /kudos/:id
  • If time, add READ ONE, UPDATE WHOLE, and UPDATE PARTIAL

kudos's People

Contributors

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