I have installed Django Channels. I am trying to run the following commands to run Daphne server and a worker.
> daphne chat.asgi:channel_layer --port $PORT --bind 0.0.0.0 -v2
> python manage.py runworker -v2
But each command opens up a live terminal showing logs. I just want to run them as background processes. Can anyone show me how to do this?