Skip to content

Latest commit

 

History

History
52 lines (42 loc) · 694 Bytes

README.md

File metadata and controls

52 lines (42 loc) · 694 Bytes

Todo-App

A simple Todo application made using ReactJS and Django REST framework.

🚀 Installation

  • Clone the repository:
git clone [email protected]:raghavluthra20/Todo-App.git
  • Create and activate a virtual environment:
python -m venv env
env\Scripts\activate
  • Head over to the main project directory:
cd Todo-App
  • Install dependencies:
pip install -r requirements.txt
  • Make migrations:
python manage.py makemigrations
  • Migrate the database:
python manage.py migrate
  • Install node modules:
cd web
npm install
  • Build the React project:
npm run build
  • Run the server:
cd ..
python manage.py runserver