To run the project, you need to have docker installed on your machine. To start server run the following command:
docker-compose upor if this doesn't work, try:
docker compose up --buildThe server will be running on http://localhost:80.
to access already created endpoint make a get request to http://localhost:80/. Your response should be {"message":"Hello World"}.
I suggest you to use Postman to test the endpoints.
To stop the server run the following command:
docker compose downTo see running containers run the following command:
docker ps