I have a two tasks.
@app.task
def run1():
while True:
print('run1')
time.sleep(5)
return
@app.task
def run2():
while True:
print('run2')
time.sleep(2)
return
How can I run these two tasks at the same time from the same console, from one command (preferably with a different number of workers).