Skip to content

Latest commit

 

History

History
64 lines (48 loc) · 1.83 KB

README.md

File metadata and controls

64 lines (48 loc) · 1.83 KB

Online Restaurant System

Group project for CSC 322 @ CCNY.

This is the backend for the Client Repo using Spring Boot

Project Site

https://syedsadman16.github.io/Online-Restaurant-System-Frontend/#/


Team R:

  • Syed Sadman
  • Abir Deb
  • Andrey Goryuk
  • Michal Moryosef
  • Samuel Fils

Running locally

git clone https://github.com/syedsadman16/Online-Restaurant-Backend.git
cd Online-Restaurant-Backend
./mvnw package
java -jar target/*.jar

Or you can run it from Maven directly using the Spring Boot Maven plugin. If you do this it will pick up changes that you make in the project immediately (changes to Java source files require a compile as well - most people use an IDE for this):

./mvnw spring-boot:run

You can then run the backend here: http://localhost:8080/

Technologies Used

  • Spring Boot (Maven)
  • MVC Architecture
  • Spring Security
  • Spring Data JPA
  • JWT Authentication
  • MySQL
  • H2 Database Engine
  • Heroku

Default Users

We already have some intial data in our database just for testing. However you can see create more data dynamically.
  1. Username: manager, Password: manager
  2. Username: customer1, Password: customer1
  3. Username: customer2, Password: customer2
  4. Username: customer3, Password: customer3
  5. Username: vip1, Password: vip1
  6. Username: chef1, Password: chef1
  7. Username: chef2, Password: chef2
  8. Username: deliverer1, Password: deliverer1
  9. Username: deliverer2, Password: deliverer2

Project Documentation:

  1. Phase 1 Report - Software Requirements & Description

  2. Phase 2 Report - Design Report