Website for visualize and review leetcode progress. React is used for frontend with Flask as backend.
Overview:
https://youtu.be/rooFXgYY6HA
- Go to leetcode_recode folder
- Install dependencies for React
yarn install
- Go to backend folder
cd backend
- Create virtual environment and activate it
- For mac/unix users:
python3 -m venv env
source env/bin/activate
- For windows users:
py -m venv env
.\env\Scripts\activate
- Install flask related packages
pip install -U flask flask-cors python-dotenv
- Install Google client library
pip install --upgrade google-api-python-client google-auth-httplib2 google-auth-oauthlib oauth2client
- Install other required packages
pip install pandas
- Start the backend in a terminal
yarn start-backend
- Start the frontend in another terminal
yarn start