Access Django Server From Another Machine

[Solved] Access Django Server From Another Machine | Python Frameworks Django - Code Explorer | www.yomemimo.com
Question : access django server from another machine

Answered by : bilalahmeddev

ALLOWED_HOSTS = ['192.168.1.50', '127.0.0.1', 'localhost']
run with your system IP Address
python manage.py runserver 192.168.1.50:8000

Source : https://stackoverflow.com/questions/25550116/access-django-app-from-other-computers/25550387 | Last Update : Tue, 07 Sep 21

Answers related to access django server from another machine

Code Explorer Popular Question For Python Frameworks Django