Skip to main content

A Django app to sends notifications to internal users.

Project description

DRF Notification System

An app that sends notifications to internal users.

Requirements

  • Django (2.2 <= 3.2 )
  • Django REST framework
  • django_filters
  • Celery

Installation

  • pip install drf-notification-system

Post-Install Setup

Django Settings

INSTALLED_APPS = [
    ...
    'notification_system',
]

Include the notification system urls in your project urls.py like this

path('notification-system/', include('notification_system.urls')),
  • Run python manage.py migrate to create the notification system models.

  • If you want to change send email notification default queue name, set EMAIL_NOTIFICATION_QUEUE_NAME constance on the settings.py file. the default value is 'send_email_notification'

  • If you want to change send update outgoing message status default queue name, set UPDATE_OUTGOING_MESSAGE_STATUS_QUEUE_NAME constance on the settings.py file. the default value is 'update_outgoing_message_status'

  • If you want to change send email notification rate limit, set NOTIFICATION_SYSTEM_SEND_EMAIL_RATE_LIMIT constance on the settings.py file. the default value is '700/m'

  • If you want to change user fields to pass template as context data, set NOTIFICATION_SYSTEM_DEFAULT_USER_FIELD constance on the settings.py file. the default value is ['id', 'username', 'first_name', 'last_name', 'email']

  • Run Celery worker with the following command

    celery -A 'project_name' worker --loglevel DEBUG -Q 'queue_name' --concurrency=1

    celery -A 'project_name' worker --loglevel DEBUG -Q send_email_notification --concurrency=1

    celery -A 'project_name' worker --loglevel DEBUG -Q update_outgoing_message_status --concurrency=1

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

drf-notification-system-1.4.0.tar.gz (16.0 kB view details)

Uploaded Source

File details

Details for the file drf-notification-system-1.4.0.tar.gz.

File metadata

File hashes

Hashes for drf-notification-system-1.4.0.tar.gz
Algorithm Hash digest
SHA256 dc9791df76c3b32ad701288b2192363fe6e97b9c15d127a0071244d20c194025
MD5 1601631b8662c303ff3391d9e3d45b70
BLAKE2b-256 9024ea821325c18f8f8164a9f4a6b386f63a9d42842852bbdcb8b7179a12bd9f

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page