This API is responsible for controlling books in a library, there API provides the features needed to manage books in a bookstore.
- Java 11
- PostgreSQL
- Docker and Docker compose
cp .env.example .env
# Open the .env file and configure your settings
DB_NAME=database_name
DB_USER=username
DB_PASSWORD=password
TIMEZONE=America/Sao_Paulo # Or different according to your region or country
docker-compose up --build -d
You need to configure postgreSQL according to your system.
export $(cat .env | xargs) # if you are using linux, list the environment variables for the application.properties file
mvn spring-boot:run