Skip to content

kindred-code/bookstore

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

Bookstore

An application that finds creates user and the user is able to create books with the access he gets

Tech Stack

Tools: Spring Boot

Deployment

docker pull michpoli/bookstore

The are all the files inside to run the spring application

API Reference

Register

  POST /api/register
Parameter Type Description
username string username
email string email
password string password

Authenticate

  POST api/login
Parameter Type Description
username string username
password string password

You get a token in case of succeful login to copy for your requests

Create Products

  POST api/books
Parameter Type Description
title string name of the book
author string name of the author
ISBN string ISBN
publishedDate date yyyy/MM/dd

Get All Products

  GET api/books
Parameter Type Description

Update a Product

  PUT api/books/{id}
Parameter Type Description
title string name of the book
author string name of the author
ISBN string ISBN
publishedDate date yyyy/MM/dd

Delete a Product

  DELETE /api/books/{id}
Parameter Type Description
id int id of the book

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published