This is my Smart Stock Inventory Management project.
You can access the project on GitHub or clone it locally:
git clone https://github.com/AmanShaikh09/SmartStock.gitPrerequisites:
- Node.js (LTS)
- Python 3.10+
- MongoDB (local or cloud)
- Clone the repo:
git clone https://github.com/AmanShaikh09/SmartStock.git
cd SmartStock- Backend setup:
cd backend
python -m venv .venv
.venv\Scripts\Activate.ps1
pip install -r requirements.txt
copy .env.example .env-
Start MongoDB (make sure it is running locally or update
MONGO_URLin.env). -
Run the backend API:
python main.pyThe API runs on http://127.0.0.1:5001.
- Frontend setup (new terminal):
cd frontend
npm install
npm run devThe frontend runs on http://localhost:5173.