Skip to content

Latest commit

 

History

History
68 lines (34 loc) · 1.27 KB

README.md

File metadata and controls

68 lines (34 loc) · 1.27 KB

BookStore Backend

Welcome to BookStore Backend repository. This repository houses a Spring Boot application with spring security for JWT authentication, h2 as database and Swagger Apis.

Table of Contents

Installation

To get started with this project, follow these steps:

Make sure you have JDK 17 installed on your computer.

Option 1:

  1. Clone the repository to your local machine.

      git clone https://github.com/shubhammane77/bookstore-backend.git
    
      cd bookstore-backend
    
  2. Run java application

      java -jar bookstore.jar
    
  3. Access the swagger menu and h2 database.

      http://localhost:8089/swagger-ui/index.html#/
    
      http://localhost:8089/h2-console
    

Option 2:

  1. Clone the repository to your local machine.

      git clone https://github.com/shubhammane77/bookstore-backend.git
    
      cd bookstore-backend
    
  2. Import project in Intellij using pom.xml.

  3. Run BookstoreApplication.java.

  4. Access the swagger menu and h2 database.

      http://localhost:8089/swagger-ui/index.html#/
    
      http://localhost:8089/h2-console
    

Technologies Used

  1. Java 17

  2. Spring Boot

  3. Spring Security

  4. H2 Database

  5. Swagger

  6. Maven