Metadata-Version: 2.1
Name: django-chats
Version: 0.1.0
Summary: Async Chatter App Based on Webscokets
Home-page: https://github.com/Ming-Lyu/chatter
Author: MingLyu
Author-email: minglyupolimi@gmail.com
License: MIT
Keywords: chatter
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 3.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: django (==3.1)
Requires-Dist: django-fsm
Requires-Dist: djangorestframework
Requires-Dist: django-ckeditor
Requires-Dist: django-environ
Requires-Dist: channels-redis
Requires-Dist: channels
Requires-Dist: daphne

=============================
django-chats
=============================

.. image:: https://badge.fury.io/py/chatter.svg
    :target: https://badge.fury.io/py/chatter

.. image:: https://travis-ci.org/Ming-Lyu/chatter.svg?branch=master
    :target: https://travis-ci.org/Ming-Lyu/chatter

.. image:: https://codecov.io/gh/Ming-Lyu/chatter/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/Ming-Lyu/chatter

Async Chatter App Based on Webscokets

Documentation
-------------

The full documentation is at https://chatter.readthedocs.io.

Quickstart
----------

Install chatter::

    pip install chatter

Add it to your `INSTALLED_APPS`:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'chatter.apps.chatter',
        ...
    )

Add chatter's URL patterns:

.. code-block:: python

    from chatter import urls as chatter_urls


    urlpatterns = [
        ...
        url(r'^', include(chatter_urls)),
        ...
    ]

Features
--------

* TODO

Running Tests
-------------

Does the code actually work?

::

    source <YOURVIRTUALENV>/bin/activate
    (myenv) $ pip install tox
    (myenv) $ tox


Development commands
---------------------

::

    pip install -r requirements_dev.txt
    invoke -l





History
-------

0.1.0 (2020-09-15)
++++++++++++++++++

* First release on PyPI.


