Skip to content
This repository has been archived by the owner on Oct 8, 2020. It is now read-only.

Getting started

Shiva Nandan edited this page Apr 3, 2014 · 1 revision

Linux

Install git, mysql and ruby

If you are installing ruby using rvm:

\curl -sSL https://get.rvm.io | bash -s stable
rvm list known
rvm install 2.1

Clone the repo

git clone https://github.com/seekshiva/courses.git
cd courses

Install required gems

gem install bundler
bundle install

Create database config file (make sure to update the details)

cp config/database.yml.sample config/database.yml

Load schema to dev/test database

rake db:schema:load
rake db:test:load

Run the app

rails s

Find the app at http://localhost:3000

Clone this wiki locally