I have a Django server running on 127.0.0.1:8000
When I try to access it from the same machine then I am able to open my application. But when I try to access this app from a different machine by using machinename:8000 then it says 'This site can't be reached'
In my settings.py, I have
ALLOWED_HOSTS = config('ALLOWED_HOSTS', cast=Csv())
and
ALLOWED_HOSTS=
Is this related to above configuration?