Installing GenebookΒΆ

Genebook is a Meteor.js application at its core. This means it is completely written in javascript. It requires Node.js, MongoDB and ofcourse Meteor itself.

Installing this on a Mac is as easy as:

brew install mongodb
brew install node
curl https://install.meteor.com/ | sh
git clone https://github.com/holmrenser/genebook

Check this if you run into npm user persission problems.

The following will let you run a development version on your local machine:

meteor

While the app is running you can run the following script to load some example data:

bash scripts/load_testdata.sh

Information on compiling a full standalone build will be added soon