'Django Notification HQ - I installed the app manually but no signal is being sent
I have a django app and I wanted to install django-notification-hq (https://github.com/django-notifications/django-notifications)
I wanted to modify some parts of the app so I downloaded the repo and install it.
I first install it using the recommended approach in github (here below) and it all worked.
$ git clone https://github.com/django-notifications/django-notifications
$ cd django-notifications
$ python setup.py sdist
$ pip install dist/django-notifications-hq*
However, I wanted to try a different way (also because I wanted to learn) and add the app like if had developed it entirely.
So
- I removed everything I did
- I took the
notificationsfolder insidedjango-notificationsand added it directly to my project. - I changed my project settings and add
'notifications.apps.Config', - I updated my req.tx and installed necessary libraries
Now, the project runs and nothing breaks....however, no notification is being generated. I followed as much as possible the code and noticed that it's the notify.send() that doesn't send anything.
This makes me think that there is something about signals that I am not doing right?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
