Skip to content

Latest commit

 

History

History
42 lines (26 loc) · 909 Bytes

INSTALL.md

File metadata and controls

42 lines (26 loc) · 909 Bytes

Installation

Installing Ruby on Rails on Ubuntu/Debian

Follow the following link to install ROR on your Ubuntu or Debian machine.

Get Source code

Clone the source from git from here using the command,

    git clone https://github.com/fsmk/camp-web.git
     

Installing all dependent gems

To install all the dependent gems needed for running the camp site, run the following command.

    bundle install
    

Setting up the development environment

Run the following command to tell Rails that this is a development environment.

    rake db:migrate
    

Running the Rails Server

Start the server using the following command.

    rails server
    

After this, the camp website should be running at http://localhost:3000

Happy Hacking!!!