Welcome to the Restaurant Management System repository! This project is a Java application based on Spring Boot, using PostgreSQL as the database to create a REST API for restaurant management. The system includes essential classes to model the structure of a restaurant, such as Client, Eating Table, Employee, Ingredient, Item, and Request.
Make sure you have the following tools installed before running the system:
PostgreSQL is used as the database to store system data. Before running the application, create a database named restaurant_application_system_db and adjust the connection settings in the application.yml file.
spring:
datasource:
url: jdbc:postgresql://localhost:5432/restaurant_application_system_db
username: postgres
password: 123456