NODE_ENV = development
PORT = 5000
MONGO_URI = your mongodb uri
JWT_SECRET = 'abc123'npm install
cd frontend
npm install# Run frontend (:3000) & backend (:5000)
npm run dev
# Run backend only
npm run serverYou can use the following commands to seed the database with some sample users and products as well as destroy all data
# Import data
npm run data:import
# Destroy data
npm run data:destroySample User Login
[email protected]
123456