I am running my django-python server on localhost and it gives following status while running:
System check identified 1 issue (0 silenced).
January 04, 2017 - 19:58:23
Django version 1.9, using settings 'goldbrex.settings'
Starting development server at http://127.0.0.1:9000/
Quit the server with CTRL-BREAK.
I want my fellow(windows user to hit an API running on localhost at my PC, How to make it possible using command line?
You can't let others visit your site if you run your server on
127.0.0.1
, which is localhost only. I think you need to start your server like this:Then other people could grab your ip address(assume it's 1.2.3.4) and visit it in the browser:
Check wikipedia on what is
0.0.0.0