whats the easiest way to start the jvm backend and...
# multiplatform
c
whats the easiest way to start the jvm backend and the js frontend in one gradle task? basically start the jvmRun task in the background and then run the jsRun task. i mean i can do
./gradlew jvmRun &
and then
./gradlew jsRun
but is it possible with just one gradle task?
this is pretty useful:
Copy code
tmux \
    new-session  './gradlew run' \; \
    split-window './gradlew jsRun' \;