Skip to main content

Run Website

This guide provides instructions on how to open and run the eGrocer website locally.

How to open and run eGrocer Website?

  1. Open your project in VS Code or any code editor you prefer.

  2. Open the terminal and change your current directory path to the folder that contains the package.json file of your project:

    Change Path

  3. Install all the dependencies by running the following command in your terminal:

    npm install

    Install Dependencies

  4. To run the website on your localhost, execute the following command:

    npm run dev

    Run Locally

  5. To create a build folder for your project, run:

    npm run export

    Build Folder