Wiki

Clone wiki

Approximation Calculator / Downloading code to your local machine

Steps on downloading and running our application on your local machine:


Necessary components prior to cloning:

Ruby on Rails

Git

After these things are installed and functional:

Fork our repository to your own bitbucket repository.

Clone the code copy from you Bitbucket account to your local machine. You can name the local repo whatever you like.

Execute the following steps to run the server:

  • Navigate to the top level directory of whatever you chose to name the repo. i.e. /home/user/name_of_project
  • Run bundle install.
  • Run bundle update.
  • Migrate the database with rake db:migrate.
  • Finally, start the server locally by executing rails s
  • Open your browser, and navigate to http://localhost:3000. You should now see the startup screen.

Updated