I'm working with PyCharm and I wonder if there's a way to make the Django embedded server accesible for the other hosts in my local network or I need to deploy my app on a dedicated web server such as Apache?
Now, I'm accessing my Django app like this in the browser:
http://localhost:8000/mypage/ and I want other users inside my local network to type:
http://my_private_ip:8000/mypage/ in their browsers and see the same page.