Skip to content

Instantly share code, notes, and snippets.

@elijahc
Last active August 29, 2015 14:04
Show Gist options
  • Save elijahc/5168eda6cdf46f1b6f2d to your computer and use it in GitHub Desktop.
Save elijahc/5168eda6cdf46f1b6f2d to your computer and use it in GitHub Desktop.
Vertex Installation

CentOS 6

Install Ruby

Using RVM (probably the most popular way)

$ \curl -sSL https://get.rvm.io | bash -s stable

OR

Using guides provided by ruby-lang.org

https://www.ruby-lang.org/en/installation/

Install Redis

With yum:

$ yum install redis

OR

From source (example below):

$ wget http://download.redis.io/releases/redis-2.8.13.tar.gz
$ tar xzf redis-2.8.13.tar.gz
$ cd redis-2.8.13
$ make

Install Postgres

$ yum install postgres

Vertex Setup

Install Source

$ git clone https://github.com/elijahc/vertex
$ cd vertex
$ bundle install

Start Server

$ rails s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment