├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── config ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── docker-compose.yml ├── manage.py ├── req.txt ├── src └── web_rtc │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── consumers.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_profile_login.py │ ├── 0003_alter_profile_login.py │ └── __init__.py │ ├── models.py │ ├── routing.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── static ├── client.js ├── client_rtc.js ├── cover.jpg └── style.css └── templates ├── index.html └── test.html /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/README.md -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /config/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/config/asgi.py -------------------------------------------------------------------------------- /config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/config/settings.py -------------------------------------------------------------------------------- /config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/config/urls.py -------------------------------------------------------------------------------- /config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/config/wsgi.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/manage.py -------------------------------------------------------------------------------- /req.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/req.txt -------------------------------------------------------------------------------- /src/web_rtc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/web_rtc/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/src/web_rtc/admin.py -------------------------------------------------------------------------------- /src/web_rtc/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/src/web_rtc/apps.py -------------------------------------------------------------------------------- /src/web_rtc/consumers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/src/web_rtc/consumers.py -------------------------------------------------------------------------------- /src/web_rtc/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/src/web_rtc/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/web_rtc/migrations/0002_alter_profile_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/src/web_rtc/migrations/0002_alter_profile_login.py -------------------------------------------------------------------------------- /src/web_rtc/migrations/0003_alter_profile_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/src/web_rtc/migrations/0003_alter_profile_login.py -------------------------------------------------------------------------------- /src/web_rtc/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/web_rtc/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/src/web_rtc/models.py -------------------------------------------------------------------------------- /src/web_rtc/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/src/web_rtc/routing.py -------------------------------------------------------------------------------- /src/web_rtc/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/src/web_rtc/tests.py -------------------------------------------------------------------------------- /src/web_rtc/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/src/web_rtc/urls.py -------------------------------------------------------------------------------- /src/web_rtc/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/src/web_rtc/views.py -------------------------------------------------------------------------------- /static/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/static/client.js -------------------------------------------------------------------------------- /static/client_rtc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/static/client_rtc.js -------------------------------------------------------------------------------- /static/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/static/cover.jpg -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/django_video_chat_webrtc/HEAD/templates/test.html --------------------------------------------------------------------------------