Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 716 Bytes

README.md

File metadata and controls

12 lines (8 loc) · 716 Bytes

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.

Requirements

pip install cookiecutter

How to use

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.