This is a cookiecutter boilerplate template for Django REST Framework (DRF) to start your Django REST API backend project in Django 4.1. This includes sample endpoints to skip the initial setup and quickly get started with your Django API development project.
pip install cookiecutter
run cookiecutter <this_repo_url>
from the terminal,
answer or skip(press enter) for the questions project_name
, app_name
, author
etc. You will get a working project directory to get started with sample endpoints which you can start edit.
You can run your app just like any other django project, open the directory with cd project_name
and run python manage.py runserver
.