Skip to main content

Building and Running

This guide explains how to build and run the code in your local Temenos Explorer repository.

Step 1: Install Package Dependencies

Temenos Explorer requires a number of development and runtime dependencies. To install these dependencies follow these steps:

  1. Go to the terminal (select "Terminal -> New Terminal" from the file menu if no terminal is open)
  2. Navigate to the TemenosExplorer folder
  3. Run the command npm run bootstrap

All dependencies listed in package.json will now be downloaded and installed which can take a few minutes depending on the speed of your connection

Step 2: Build Temenos Explorer

It is a good idea to do a full build of Temenos Explorer when first setting up your local repository to ensure all bundled code is the latest. To run a build follow these steps:

  1. Go to the terminal (select "Terminal -> New Terminal" from the file menu if no terminal is open)
  2. Navigate to the TemenosExplorer folder
  3. Run the command npm run build

This will run the build process to convert all TypeScript to JavaScript and bundle all code ready for usage in the browser.

Step 3: Run Temenos Explorer

To run Temenos Explorer follow these steps:

  1. Go to the terminal (select "Terminal -> New Terminal" from the file menu if no terminal is open)
  2. Navigate to the TemenosExplorer folder
  3. Run the command npm run start
  4. Open the specified local URL in your browser (e.g. http://localhost:8001)