I would like to continuously deploy a django server. The command I run to deploy the server is
python manage.py runserver
However, this command runs as an infinite loop. Therefore, the associated job in the continuous deployment never ends. The problem is that I would like the server to be updated whenever some commit is done. But it won't work here because the next job associated with the commit won't start until the end of the first job.
Is there a solution to this problem?