Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Orion/How Tos/Install Orion Marketplace on Localhost

This page explains how to download, install, and run Orion Marketplace on your local machine.

Prerequisites

  1. Download and install the current Node.js for your platform from [1].
  2. Pre-buit installers should contain NPM out of the box. If you decide to build from sources, you may want to use a build script. See, e. g. [2].
  3. Download and install Mongodb for your platform from [3].
  4. Clone Orion Marketplace sources from http://git.eclipse.org/c/orion/org.eclipse.orion.marketplace.git

Configuration

  1. Depending on your platform, follow official mongodb installation guidelines: [4]
  2. Using the system console (or node.js command prompt in Windows) navigate to the location where you have cloned the Orion Marketplace sources. In order to install required external node.js modules, use npm install.
  3. If you provided a different database name than orion-marketplace or wish to alter some default server settings, open the orion-marketplace.conf configuration file and change the appropriate configuration entries.

Run the server

  1. Navigate to the server location and type node app.
  2. The server should be running on http://localhost:3000

Back to the top