A eCommerce website for students! ______________________
open project in terminal.
create virtaul environment using:
python -m venv env
install dependencies using:
pip install -r ./requirements.txt
goto ./api
using
cd ./api
start API using
uvicorn main:app --reload
NOTE: Do not close the terminal else API will stop.
Open another terminal window.
Install the dependencies using:
npm i
start development server using:
npm start