SmartKart

Working Demo

Video

For Developers

Step 1: Clone the repository

git clone https://github.com/Piyush-onGIT/smartkart

Step 2: Install all dependencies for frontend

cd client
npm install

Step 3: Install all dependencies for the backend, first make sure you are in the root folder of the project

cd server-node
npm install
cd ../server-python
pip install -r requirements.txt

Step 4: Create 3 different instances for your terminal and open them in the root folder of the project

-> Terminal 1:

cd client
npm start

Frontend running on port 3000

-> Terminal 2:

cd server-node
npm start

Express backend running on port 5000

-> Terminal 3:

cd server-python
python main.py

Python backend running on port 5001