Does anyone know of a good way to incorporate the ...
# ktor
s
Does anyone know of a good way to incorporate the
run
task with development mode set to
true
and the
build -t
task into a single gradle task?
Well, I didn't find a clever way to solve this, but I let Intellij help me. It offers a
compound
run configuration, where you can specify multiple configurations to run at the same time. It doesn't work well outside of Intellij, but it serves my purpose for now.
a
As an alternative, you can have an external script that executes both tasks.