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

Latest commit

 

History

History
39 lines (20 loc) · 952 Bytes

README.rdoc

File metadata and controls

39 lines (20 loc) · 952 Bytes

Installation guide

These instructions will show you how to install and run a local instance of Rorganizer.

  1. Install Ruby on Rails version 4.2.5 or higher. See, e.g. guides.rubyonrails.org/getting_started.html#installing-rails

  2. Install postgresql. See, e.g. www.postgresql.org/download/

  3. Open the postgres console as the administrator and run

    create role rorganize password 'password' login;
    create database rorganizer_development owner rorganize;
  4. Open a terminal and go to the directory where you want to install the app.

  5. Clone the repository with

    git clone https://github.com/JosephBK/rorganizer.git
  6. Switch to the rorganizer directory.

  7. Run

    bundle install
    

    to install the required gems.

  8. Run

    rake db:migrate
    

    to set up the database.

  9. Start the server with

    rails server
    
  10. Navigate to localhost:3000 in your browser to use the application.