Skip to content

Latest commit

 

History

History
153 lines (95 loc) · 4.11 KB

README.md

File metadata and controls

153 lines (95 loc) · 4.11 KB

Covid-19 Vaccine Scheduler

REST API for Covid-19 Application

  • We have developed this REST API for an Covid-19 Application. This API performs all the fundamental CRUD operations of any Covid-19 Application platform with user validation at every step.
  • This project is developed by team of 5 Back-end Developers during project week in Masai School.

Tech Stack

  • Java
  • Spring Framework
  • Spring Boot
  • Spring Data JPA
  • Hibernate
  • MySQL
  • Swagger

Modules

  • Login, Logout Module
  • User Module
  • Admin Module

Features

  • User and Admin authentication & validation with session uuid having.
  • Admin Features:
    • Administrator Role of the entire application
    • Only registered admins with valid session token can add/update/delete customer from main database
    • Admin can access the details of different Member ,Vaccine Center ,Vaccine Inventory and Vaccine Ragistration.
  • User Features:
    • A user can register himself or herself on the platform.
    • He/She can check the vaccine centres and vaccine availabilty.
    • After booking an appointment, he will get appointment details for the vaccine dose.

Contributors

ER-Diagram

ER Diagram

Work-Flow

Work Flow_1

Installation & Run

  • Before running the API server, you should update the database config inside the application.properties file.
  • Update the port number, username and password as per your local database config.
    server.port=8888

    spring.datasource.url=jdbc:mysql://localhost:3306/vaccinescheduler;
    spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
    spring.datasource.username=root
    spring.datasource.password=root

API Root Endpoint

https://localhost:8888/

http://localhost:8888/swagger-ui/

API Module Endpoints

Login Module

  • POST //api/adminlogin : Admin can login with mobile number and password provided at the time of registation