A simple Todo application made using ReactJS and Django REST framework.
- Clone the repository:
git clone git@github.com: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