Is there any way to run two tasks simultaneously?
I'm not sure if this is an intended use case (continuous tasks).
I have a Bakefile like this:
launch/dev: launch/huey launch/flask
launch/huey:
huey_consumer app.main
launch/flask:
flask run
And my intention would be to run both launch/huey and launch/flask at the same time when launch/dev is called in, order to test an app.
Is there any way to run two tasks simultaneously?
I'm not sure if this is an intended use case (continuous tasks).
I have a Bakefile like this:
And my intention would be to run both
launch/hueyandlaunch/flaskat the same time whenlaunch/devis called in, order to test an app.