I have a Django app that I'm running with
python manage.py runserver 0.0.0.0:8000
I'm also connected to a corporate VPN for work.
I can access this app by going to localhost:8000/admin
or 192.x.x.x:8000/admin
in my browser, that's fine. What I want to do is provide access to this Django app to my coworker, who is connected to the same VPN as me. How can I do this?
EDIT: also want to note I am on a Mac and have the django settings file with
DEBUG = False
ALLOWED_HOSTS = ['*']