Django Courses Notifications
Notifications support for the Django Courses app
Documentation
The full documentation is at https://django-courses-notifications.readthedocs.io.
Quickstart
Install Django Courses Notifications:
pip install django-courses-notifications
Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'courses_notifications.apps.DjangoCoursesNotificationsConfig',
...
)
Add Django Courses Notifications's URL patterns:
from courses_notifications import urls as courses_notifications_urls
urlpatterns = [
...
url(r'^', include(courses_notifications_urls)),
...
]
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: