Skip to content

Latest commit

 

History

History

catalog-service

catalogservice

Run locally

docker-compose -f docker/docker-compose.yml up -d
./mvnw spring-boot:run -Dspring-boot.run.profiles=local

Using Testcontainers at Development Time

You can run TestCatalogServiceApplication.java from your IDE directly. You can also run the application using Maven as follows:

./mvnw spotless:apply spring-boot:test-run

Run tests

./mvnw clean verify

Running only this Service Locally - Tips

To run only the Catalog Service locally with clean logs, you can follow these steps:

  1. start the Kafka and Postgres servers by using below command(You should be inside appropriate directory and docker setup should be done :-)
docker compose up kafka postgres
  1. In IntelIj Open Modify Run Configuration from Main class: com.example.catalogservice.CatalogServiceApplication Set the Environment variable value to
SPRING_PROFILES_ACTIVE=local

Useful Links