You can run server in docker container. It consists of db and application.
sudo docker compose up --buildYou will have server launched on port 80
To build and start server locally you need db:
sudo docker compose create db
sudo docker compose start dbOr your local postgres, you need to paste your database user and password on application.properties
And start server:
./gradle build
./gradlew bootRun