A todo application where the following functionalities are present:
- User can create, delete and edit a to-do.
- They should also be able to mark a to-do done and vice-versa.
- They should be able to create a to-do under a bucket. The user has the flexibility to name this bucket according to his/her choice. a. All the existing buckets the user has created should be given as options, next time the user tries to create a new bucket.
Tech Stack: Django, React
1: pip install pipenv
2: pipenv install django
3: pipenv install djangorestframework django-cors-headers
4: npm install -g create-react-app
5: yarn add bootstrap reactstrap
The backend server will run on: http://127.0.0.1:8000
The Frontend server will run on: http://localhost:3000/
yarn start
python manage.py runserver