/django-todo-react

Django Todo React Application

Primary LanguagePython

django-todo-react

Django Todo React Application

Tech Used

The backend application has a todo model for testing purposes. The frontend at this time is just a blank CRA. Also important no security was taken to hide any secret django keys since this is just for learning anyhow.

Start App

Backend

Python 3 and pipenv are required. pipenv can be installed using pip3 install pipenv provided you have python 3 and pip setup. After that ensure you are in the project root and run...

pipenv shell
cd backend
python manage.py runserver

The backend application runs at: localhost:8080

Frontend

cd frontend
npm ci
npm start

The frontend application runs at: localhost:3000

Important Routes

http://localhost:8000/api/ The api rest route.

http://localhost:8000/graphql/ The graphql route.