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

Difference between revisions of "Orion/How Tos/Install Orion Marketplace on Localhost"

< Orion‎ | How Tos
(Prerequisites)
 
(One intermediate revision by one other user not shown)
Line 4: Line 4:
 
#Download and install the current Node.js for your platform from [http://nodejs.org/download/].  
 
#Download and install the current Node.js for your platform from [http://nodejs.org/download/].  
 
#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. [https://gist.github.com/isaacs/579814].
 
#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. [https://gist.github.com/isaacs/579814].
#Download and install Apache CouchDB for your platform from [http://couchdb.apache.org/].
+
#Download and install Mongodb for your platform from [http://www.mongodb.org/downloads].
#Clone Orion Marketplace sources from [http://git.eclipse.org/c/orion/org.eclipse.orion.marketplace.git http://git.eclipse.org/c/orion/org.eclipse.orion.marketplace.git]
+
#Clone Orion Marketplace sources from [git://git.eclipse.org/gitroot/orion/org.eclipse.orion.marketplace.git git://git.eclipse.org/gitroot/orion/org.eclipse.orion.marketplace.git]
  
 
== Configuration ==
 
== Configuration ==
#If installed from pre-built binaries, Apache CouchDB itself should not require additional configuration and be available using [http://localhost:5984/_utils/ http://localhost:5984/_utils/].
+
#Depending on your platform, follow official mongodb installation guidelines: [http://docs.mongodb.org/manual/installation/]
#Using the Apache CouchDB web interface create a database for Orion Marketplace, e. g. <code>orion-marketplace</code>.
+
 
#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 <code>npm install</code>.
 
#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 <code>npm install</code>.
 
#If you provided a different database name than <code>orion-marketplace</code> or wish to alter some default server settings, open the <code>orion-marketplace.conf</code> configuration file and change the appropriate configuration entries.
 
#If you provided a different database name than <code>orion-marketplace</code> or wish to alter some default server settings, open the <code>orion-marketplace.conf</code> configuration file and change the appropriate configuration entries.

Latest revision as of 07:39, 20 February 2014

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 git://git.eclipse.org/gitroot/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