Note: Make sure to check the application.properties of your setup, watch for the DB configuration, most importantly the URL (name of your DB).
In the DB folder you'll find two files: a .sql and a .backup to properly set up your DB; choose whichever you prefer.
To run the project, navigate to the project folder and execute:
CMD
mvnw spring-boot:run
BASH
./mvnw spring-boot:run
This will automatically install all the necessary dependencies and everything related to Spring Boot.
To access Swagger, open the following link in your browser:
http://localhost:8080/swagger-ui/index.html
To add dependencies to the pom.xml file, write the necessary XML code for it, and then execute:
CMD
mvnw clean install # for cmd
BASH
./mvnw clean install # for bash
It is important to run this command every time you make changes to the pom.xml.
To set the .env file on your local machine copy the content of .env.example into a new .env file in the same folder, and replace the corresponding variables
That's all for now!