How can I make the development server from django running permanent? So that it does\'t stop when I quit the shell.
Thanks
create a file with this, example /tmp/screendjango:
screen python manage.py runserver
and then you put:
screen -dmS django -c /tmp/screendjango
for attach the sessión you put
screen -d -r django.