AKAvinash Kumarinavi1501.hashnode.dev·Jan 14, 2022 · 2 min readSignals :DjangoDjango has a "signal dispatcher" which helps two separate applications to get notified when any action occurs anywhere within the framework. These are useful in that scenario where the piece of code is interested in the same piece of the event. Dja...00
AKAvinash Kumarinavi1501.hashnode.dev·Jan 10, 2022 · 3 min readCreate Custom User Model in DjangoIn this post, I will tell you about how to make a custom user model in Django You must have python installed Create virtual Env first Activate virtual environment install django Step 1. Start new project django-admin startproject my_project Step 2...00