Skip to content

Latest commit

 

History

History
35 lines (19 loc) · 618 Bytes

README.md

File metadata and controls

35 lines (19 loc) · 618 Bytes

Todo_Crud_DRF

Crud operation using Django rest framework

Steps to setup:

#Install python 3.10 and add path

#Install Django:(In the workspace of the project using terminal)

pip install Django

#Create Virtual Environment:

python -m venv env

#Select the python interpreter and activate

env/Scripts/Activate.ps1

#Install Django Restframe work

pip install djangorestframework

#Make migration:(If any change in model.py)

python manage.py makemigrations
python manage.py migrate

#Run Server

python manage.py runserver

#Server

http://127.0.0.1:8000/