Access Django app from other computers

后端 未结 4 2014
臣服心动
臣服心动 2021-02-14 22:17

I am developing a web application on my local computer in Django.

Now I want my webapp to be accessible to other computers on my network. We have a common network drive

4条回答
  •  日久生厌
    2021-02-14 22:58

    Run the application with IP address then access it in other machines.

    python manage.py runserver 192.168.56.22:1234

    Both machines should be in same network, then only this will work.

提交回复
热议问题