Skip to content

Latest commit

 

History

History
62 lines (43 loc) · 2.39 KB

Sprint1.md

File metadata and controls

62 lines (43 loc) · 2.39 KB

The goal for the Sprint 1 was to develop the essential Front-End Pages, API's, set-up the DB along with tables, and document.

Accomplishments

Planning

Development

Following REST API’s have been created

  • Retrieve all Users : GET /api/users
  • Retrieve User based on User Id : GET /api/users/id/:id
  • Retrieve User based on Email Id : GET /api/users/email/:email
  • Add a New User : POST /api/users/newuser
  • Update User Details : PUT /api/users/:id
  • Retrieve all Posts : GET /api/posts
  • Retrieve Post by Post Id : GET /api/posts/id/:id
  • Delete Post : DELETE /api/posts/:id

Read more about them in API wiki.

Following Front-End Web Pages have been created

  • A dummy page showing Posts received from Backend (GET /api/posts)
  • Login Page
  • Registration Page
  • Home Page
  • Edit Profile Page

Read more about them here in Front-end wiki.

Following Tables have been created in DB

  • Users table
  • Posts table
  • Companies table
  • Years_of_Experiences table

Read more about them here in Database wiki.

Testing

Bugs raised: #49

Documentation

Demo Videos