This is my way of learning django ninja restframework. I'll keep on adding to it as time goes bye.
The following command are to be run on your terminal. If you run into issues, I'll be more than happy to help.
git clone https://github.com/Leac1m/book-api-django-ninja.git
cd book-api-django-ninja
Install python dependecies below.
python3 pip install -r requirements.txt
Run the migration code below.
python3 manage.py makemigrations
python3 manage.py migrate
start API server using the code below.
python3 manage.py runserver