As you know, you can check django application by running this command:
<code>python3 manage.py runserver
</code>
<code>python3 manage.py runserver
</code>
python3 manage.py runserver
Let’s say, there are 2 laptop which are sharing same internet network. When i run server for django app, i can access it on my browser from this address:
<code>http://127.0.0.1:8000/
</code>
<code>http://127.0.0.1:8000/
</code>
http://127.0.0.1:8000/
But i would like to know if it is possible to access from another computer? I tried the same address but I could not access.
My development stack is;
<code>Django version => 4.2.4
Python version => 3.11
</code>
<code>Django version => 4.2.4
Python version => 3.11
</code>
Django version => 4.2.4
Python version => 3.11
How can i solve this issue?
I tried to access from another laptop which sharing same network. i could not access.