create a settings.ini file in core directory add the following
[settings]
DEBUG=True
SECRET_KEY=SOMEKEY
installing dependencies and migrating database
pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
run following commands in the given order below
python manage.py create_authors --authors=200
python manage.py create_categories --categories=20
python manage.py create_posts --posts=300
python manage.py test
python manage.py runserver