Hi! I’m new to Kotlin and compiled languages and my question is: are there some practice to develop server application? I want to add an ability to our team unwrap project with some microservices in a couple of clicks for development. So things I’m trying to do is setup docker compose with these service, DB, etc. mount code via volume to app container and run by command. It is good way to develop JVM application or not? I asked because a lot of examples made by just compiling jar, copy to container and run from it and examples like that. These examples seem not as good decisions, because we need to recompile it every time and build again and again and also because we can use auto-rebuild on code changes that we don’t use. So could anyone explain? Thanks!