This is my side project in Ruby on Rails complete course. Do you want to acquire the course? Access the link below and learn how.
This is a Ruby on Rails (4.2.5) application backed by SQLite3 database. There are two ways to run it locally:
- Setup a local development environment with the steps below.
- Use Rbenv to set Ruby 2.4.0 version for this project.
- Ruby: We recommend Ruby >= 2.4 . We recommend using Rbenv
- SQLite: SQLite >= 3 required. Install via your system's package manager
Bundle is used to handle the project's Ruby dependancies. You can install it via
gem install bundler
bundle install
bundle exec rake db:create db:migrate db:seed utils:seed
To run a webserver, simple run:
bundle exec rails s
Something like this will get a working webserver on http://localhost:3000