Visit IPV4 IP Address : http://192.168.0.18:8000/
pip install daphne
daphne -p 8000 webcam_project.asgi:application
daphne -b 0.0.0.0 -p 8000 webcam_project.asgi:application
pip install uvicorn
uvicorn webcam_project.asgi:application --port 8000
uvicorn webcam_project.asgi:application --host 0.0.0.0 --port 8000