How to add initial data to your Django project?
1- Run this command and change myapp to your app name: This command will create an empty migration file inside your app migrations directory, it will look like the following. 2- Write your initial data as a list of dicts.…