How can I make the development server from django running permanent? So that it does\'t stop when I quit the shell.
Thanks
On Windows, run
pythonw.exe manage.py runserver
on Ubuntu run:>./manage.py runserver 0.0.0.0:8000 > /dev/null 2>&1 & >exit