SpringBoot + JUnit5 + Neo4j

There is no question that running any database in memory, during your unit test may not be the best approach. In general, using a method like TestContainers is a better approach to this problem. The only issue when we use such an approach is that we need a docker environment to run this procedure, which … Read More

Docker container setup for running an ad-hoc or local environment

In one of the projects that I am working right now; we have a setup where all the applications (front-end and back-end, as we split them). I am not going to get in details on how those applications look like but it suffices to say that all those applications are deployed as Docker containers with … Read More