The Better Together Community Engine for Django

https://badge.fury.io/py/better-together-community-engine.svg https://travis-ci.com/better-together-solutions/community-engine-django.svg?branch=master https://codecov.io/gh/better-together-solutions/community-engine-django/branch/master/graph/badge.svg Documentation Status

The Better Together Community Engine allows devlelopers to quickly model group dynamics in their applications.

Documentation

The full documentation is at https://better-together-community-engine-django.readthedocs.io.

Quickstart

Install better_together:

pip install better-together-community-engine-django

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
) + better_together.get_core_apps()

Add better_together’s URL patterns:

from better_together import urls as better_together_urls


urlpatterns = [
    ...
    url(
        r'^',
        include(
            'better_together_urls',
            namespace='better_together'
        )
    ),
    ...
]

Features

  • TODO

Running Tests

Does the code actually work?

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

Credits

Tools used in rendering this package: