This is a fully featured get to go mern-stack ecommerce website. The instructions below will get you started with setting up the project
- NPM
- YARN
- NodeJs
Installing NPM modules on both client and server folders
Execute these commands from the project directory
cd client && npm install
cd .. && npm install
- In the Root of the directory execute the following command in terminal:
npm run start
this will start the server.
- Now
cd client
and execute the following command in the client directory:
npm run start
Now Access the web app at http://localhost:3000/
in order to deloy the app make a build first by using the below command.
cd client
npm run build
Now move the build folder to the root directory and deploy.