How can I make the development server from django running permanent? So that it does\'t stop when I quit the shell.
Thanks
For windows you can use following command
python manage.py runserver 0.0.0.0:8000
For ubuntu/linux use
nohup python manage.py runserver 0.0.0.0:8000 &
for go back from nohup command use fg command
fg