Metadata-Version: 2.1
Name: django-channels-chat
Version: 0.6
Summary: A basic example of a Chat made with Django Channels
Author-email: Luis Salgado <luisabraham102@gmail.com>
Project-URL: Homepage, https://www.example.com/
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

=====
Django Channel Chat
=====

Django Channel Chat is a basic example of a Chat made with Django Channels

Detailed documentation is in the "docs" directory.

Quick start
-----------

1. Add "django-channels-chat" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...
        'django-channels-chat',
    ]

2. Include the polls URLconf in your project urls.py like this::

    path('chat/', include('chat.urls')),

3. Run `python manage.py migrate` to create the django-channels-chat models.

4. Start the development server and visit http://127.0.0.1:8000/chat/
   to start a chat.

5. Visit http://127.0.0.1:8000/chat/ to participate in the chat.
