This is a simple Recipe Management Application built with Spring Boot, JPA, and Hibernate.
Before you begin, ensure you have the following installed on your machine:
Follow these steps to get the project up and running on your local machine.
Open your terminal and run the following command to clone the repository:
git clone https://github.com/your-username/recipe-management-app.git
cd recipe-management-app
Use Maven to build the project:
mvn clean install
After the build is successful, run the application using the following command:
mvn spring-boot:run
Or use the run and debug-options in VS Code
Once the application is running, you can access it at:
http://localhost:8080/swagger-ui/index.html
demo - Contains the main application code resources - Contains application configuration files demo - Contains test cases
Recipe - The entity class representing a recipe RecipeRepository - The repository interface for CRUD operations on recipes RecipeService - The service class containing business logic for managing recipes
If you encounter any issues, please check the following:
- Ensure you have the correct versions of JDK and Maven installed
- Ensure your database is running and accessible
- Check the application logs for any error messages