Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imvickykumar999/django-webcam
Visit IPV4 IP Address : http://192.168.0.18:8000/
https://github.com/imvickykumar999/django-webcam
django ipv4-address public-network web-cam
Last synced: about 2 months ago
JSON representation
Visit IPV4 IP Address : http://192.168.0.18:8000/
- Host: GitHub
- URL: https://github.com/imvickykumar999/django-webcam
- Owner: imvickykumar999
- Created: 2024-06-19T09:35:24.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-22T07:23:46.000Z (7 months ago)
- Last Synced: 2024-06-22T17:35:58.389Z (7 months ago)
- Topics: django, ipv4-address, public-network, web-cam
- Language: Python
- Homepage: https://drive.google.com/drive/folders/19PT2dXbOONEbrazm6orgdXypASTcHWS6?usp=drive_link
- Size: 39.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# `Django-WebCam`
Visit IPV4 IP Address : http://192.168.0.18:8000/
![image](https://github.com/imvickykumar999/Django-WebCam/assets/50515418/38474e55-4c09-44b1-b1dd-694149e5042b)
### Install Daphne if you haven't already
pip install daphne### Run the server with Daphne
daphne -p 8000 webcam_project.asgi:application### Run on IPV4 Network
daphne -b 0.0.0.0 -p 8000 webcam_project.asgi:application---
### Install Uvicorn if you haven't already
pip install uvicorn### Run the server with Uvicorn
uvicorn webcam_project.asgi:application --port 8000### Run on IPV4 Network
uvicorn webcam_project.asgi:application --host 0.0.0.0 --port 8000