These instructions will show you how to install and run a local instance of Rorganizer.
-
Install Ruby on Rails version 4.2.5 or higher. See, e.g. guides.rubyonrails.org/getting_started.html#installing-rails
-
Install postgresql. See, e.g. www.postgresql.org/download/
-
Open the postgres console as the administrator and run
create role rorganize password 'password' login; create database rorganizer_development owner rorganize;
-
Open a terminal and go to the directory where you want to install the app.
-
Clone the repository with
git clone https://github.com/JosephBK/rorganizer.git
-
Switch to the rorganizer directory.
-
Run
bundle install
to install the required gems.
-
Run
rake db:migrate
to set up the database.
-
Start the server with
rails server
-
Navigate to localhost:3000 in your browser to use the application.