Skip to content

dori-dev/django-todo-react

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django Todo React

Create todo app with Django and React.

Tools

  • Django 4
  • React Js
  • Python 3

How to Run Project

Download Codes

git clone https://github.com/dori-dev/django-todo-react.git
cd django-todo-react

Install Backend Requirements

pip install pipenv
pipenv shell
pipenv install

Install Frontend Dependencies

cd frontend
npm install
npm audit

Migrate Backend Models

cd ..
cd backend
python manage.py makemigrations todo
python manage.py migrate

Add Super User

python manage.py createsuperuser

Run Django Server

python manage.py runserver

Run FrontEnd

open new terminal in frontend directory and run this command.

npm start

Open On Browser

App Page localhost:3000

Django Admin Page 127.0.0.1:8000/admin

Links

Download Source Code: Click Here

My Github Account: Click Here