Skip to content

A demo Django project showcasing the use of Django SIgnals

License

Notifications You must be signed in to change notification settings

ro6ley/django-signals-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HitCount

Django Signals - A Sample Project

A demo Django project showcasing the use of Django Signals

This repository contains the code for this blogpost on StackAbuse.

Getting Started

Prerequisites

Kindly ensure you have the following installed on your machine:

Running the Application

  1. Clone the repository
$ git clone https://github.com/ro6ley/django-signals-demo.git
  1. Check into the cloned repository
$ cd django-signals-demo
  1. If you are using Pipenv, setup the virtual environment and start it as follows:
$ pipenv install && pipenv shell
  1. Install the requirements
$ pip install -r requirements.txt
  1. Run the application
$ cd jobs_board

$ python manage.py createsuperuser

$ python manage.py runserver
  1. Log in to the admin dhasboard and populate Jobs at http:https://localhost:8000/admin

  2. Navigate to http:https://localhost:8000/jobs and subscribe

  3. Check the console for events logging

Contribution

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.