Django Growl Notifier๏ƒ

PyPI version Python Versions Django Versions License: MIT Django Growl Notifier Logo

Send Django development server notifications to Growl (or compatible notification systems).

Features๏ƒ

  • ๐Ÿš€ Automatic notifications when Django server starts

  • ๐Ÿ”ฅ Error notifications with detailed stacktrace

  • ๐ŸŒ Multiple Growl hosts support

  • ๐ŸŽจ Custom icons support

  • โš™๏ธ Easy configuration

  • ๐ŸŽฏ Manual notifications anywhere in your code

Quick Start๏ƒ

Installation๏ƒ

pip install django-growl-notifier

Configuration๏ƒ

Add to your settings.py:

INSTALLED_APPS = [
    # ... your other apps
    'django_growl',
]

GROWL_HOSTS = [
    '127.0.0.1:23053',
    '192.168.1.100:23053',
]

GROWL_APP_NAME = 'My Django App'

Usage๏ƒ

python manage.py runserver

Thatโ€™s it! Youโ€™ll receive notifications when your server starts.

Documentation Contents๏ƒ

Indices and tables๏ƒ