How can I make the development server from django running permanent? So that it does\'t stop when I quit the shell.
Thanks
If you are on Linux/Unix use the "nohup" command.
nohup manage.py runserver &
Then to get it back, use the fg command:
fg
Thanks to: Xiong Chiamiov