Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 1.1 KB

BUILD_AND_RUN.md

File metadata and controls

49 lines (33 loc) · 1.1 KB

Build & Run

Follow this guide to install the dependencies and build the modules needed to run the apps in the local environment.

Install Dependencies

The following script installs the local modules(react-components, theme, etc.) using pnpm workspaces and also installs the other dependencies.

pnpm install

Build

We support the following set of build strategies.

Building using Maven

Run the following command from the root of the project (where the root pom.xml is located).

# Installs the dependencies & builds the entire project including the JSP portals.
mvn clean install

Building using pnpm

Run the relevant command from the root of the project (where the root package.json is located).

# Builds the node projects.
pnpm build

Run

To run the apps, navigate to the specific folder and execute npm start.

# To run My Account
cd apps/myaccount
pnpm start