So I have a general question. :upside_down_face: C...
# server
s
So I have a general question. 🙃 Can I use
Gradle Flavors
instead of feature based modules for a
ktor
backend and I still have the advantages of a real
microservice
structure (For example independent deploy)? I don't think so right?🤔 Can't we somehow trick it? Like giving different port for each
flavor
, for both server port and database port?
h
Sure, the lowest level in Gradle is a Gradle SourceSet and for JVM
java.registerFeature
. But it might be tricky with Kotlin MPP.
❤️ 1