- Install Python, React
- Create a virtual environment
python -m venv .venv
- Install Python libraries using the requirements file
pip install -r requirements.txt
- [ONLY FOR REPRODUCIBILITY - DO NOT RUN] Create Django Project. This command will create a backend folder with pre-built utility files and functions.
django-admin startproject backend
- [ONLY FOR REPRODUCIBILITY - DO NOT RUN] Create Frontend folder. This will create a frontend folder with requisite scripts and functions. I have already created so running this code is not required.
npm install -g create-react-app
create-react-app frontend