Skip to content

Latest commit

 

History

History
61 lines (50 loc) · 3 KB

README.md

File metadata and controls

61 lines (50 loc) · 3 KB

REST API for Online Plant Nursery Management

Tech Stack

drawing

drawing

drawing

drawing

drawing

drawing

drawing

drawing

Modules

  • Login, Logout Module
  • Admin Module
  • Order Module
  • Customer,Address Module
  • Plants Module
  • Planters Module
  • Seeds Module

Features

  • User and Admin authentication & validation with session uuid.

Admin Features:

  • Administrator Role for the entire application
  • Only admins can add/update/delete plants, planters, seeds from main database
  • Admin can access the details of different users and orders.

User Features:

  • Registering themselves with application, and logging in to get the valid session token
  • Viewing list of available plants, planters, seeds and order items of them.
  • Only logged in user can access his orders, profile updation and other features.

Contributors

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 configuration.
  • For current application we have used the below properties.
    server.port=8888

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

ER DIAGRAM OF PLANT NURSERY MANAGEMENT APPLICATION

ER Diagram of Plant Nursery Project