A demo Django project showcasing the use of Django Signals
This repository contains the code for this blogpost on StackAbuse.
Kindly ensure you have the following installed on your machine:
- Clone the repository
$ git clone https://github.com/ro6ley/django-signals-demo.git
- Check into the cloned repository
$ cd django-signals-demo
- If you are using Pipenv, setup the virtual environment and start it as follows:
$ pipenv install && pipenv shell
- Install the requirements
$ pip install -r requirements.txt
- Run the application
$ cd jobs_board
$ python manage.py createsuperuser
$ python manage.py runserver
-
Log in to the admin dhasboard and populate Jobs at http://localhost:8000/admin
-
Navigate to http://localhost:8000/jobs and subscribe
-
Check the console for events logging
Please feel free to raise issues using this template and I'll get back to you.
You can also fork the repository, make changes and submit a Pull Request using this template.