Monday, August 5, 2013

Django run server in background

To run the django debug server in the background in linux:

./manage.py runserver > /dev/null 2>&1 &

No comments:

Post a Comment