Skip to content
dbraga edited this page Nov 28, 2014 · 2 revisions

WikiInstallation & Setup

Prerequisites

  • Thoth Index up and running
  • Node.js installed

Run Application

  1. Clone the project
  2. npm install
  3. npm start

Configuration

The environment.js contains basic configuration like Thoth Index URL and API port.
Make sure to point API to the right Thoth Index changing Thoth port and host:

    process.env.PORT = process.env.PORT || 3001;
    process.env.THOTH_PORT = process.env.THOTH_PORT || '8983';
    process.env.THOTH_HOST = process.env.THOTH_HOST || 'localhost';

The entire configuration file is located here

Clone this wiki locally