Skip to content

Install Edge Social Stream (2.0.0)

sfcarroll edited this page Feb 23, 2013 · 3 revisions

Install Rails

http://guides.rubyonrails.org/getting_started.html

Create a New Rails App

  • We'll call the example app 'social_stream' $ rails new social_stream && cd social_stream

Add Required Gems

$ vi Gemfile

add the following anywhere in the file:

gem 'social_stream', :git => 'git://github.com/ging/social_stream.git'

group :development do
    gem 'meta_request'
    gem 'pry-rails'
end

Run Bundler

$ bundle

Run the Social Stream Installer

$ rails generate social_stream:install

Create the SQLlite Database

$ rake db:migrate

Start the Webserver

$ rails s

Log In

Point your browser to 0.0.0.0:3000