Skip to content

Installation Guide

Brian Broll edited this page Mar 20, 2016 · 19 revisions

Note: This is still a work in progress and should be considered incomplete. Suggestions, requests, etc, are welcome.

Preinstallation

Installing dependencies

The following dependencies are required. However, it is worth noting that the following items do not need to reside on the same machine

  • NodeJS v4.1.1
  • MongoDB v3.0.7
  • Caffe

Installation

MongoDB

Download and install from the website. If you are planning on running MongoDB locally on the same machine as DeepForge, simply start mongod and continue to setting up DeepForge.

If you are planning on running MongoDB remotely, set the environment variable "MONGO_URI" to the URI of the Mongo instance that DeepForge will be using:

MONGO_URI="mongodb://pathToMyMongo.com:27017/myCollection" npm start

DeepForge Server

First, clone the repository:

git clone https://github.com/brollb/deepforge

Then install the project dependencies:

npm install

Finally, start with npm start and navigate to http://localhost:8080 to start using DeepForge!

Clone this wiki locally