Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 1.01 KB

README.md

File metadata and controls

36 lines (29 loc) · 1.01 KB

django-react-todo-app

A fully functional todo django/react app >> Work in Progress 😊

Getting Started

  1. Install Python, Yarn, Nodejs
  2. Clone the repo
$ git clone https://github.com/Onlynfk/django-react-todo-app.git
$ cd django-react-todo-app
  • Install pipenv, a python virtual environment manager.

  • Before you start you are to open two terminals one for backend and another for frontend

  1. Now ensure you are in root directory to install the backend servers (first terminal)
$ pipenv shell
$ pip install -r requirements.txt
$ python manage.py makemigrations
$ python manage.py migrate
$ python manage.py runserver
  1. Now Install frontend dependencies and run watch frontend (second terminal)
$ cd frontend
$ yarn install or npm install
$ npm run dev
  1. View on your browser ( to see it's working)
http://127.0.0.1:8000/frontend/