[Django]-Access Python Development Server from External IP

62👍

python manage.py runserver 0.0.0.0:8000

This will make it listen to any address. Quite useful when you want to develop over ssh from a machine that you cannot install stuff on.

Leave a comment