/sample_app

Sample App for Michael Hartl's Ruby on Rails Tutorial

Primary LanguageRuby

Ruby on Rals Tutorial Sample App

This is the sample application for the Ruby on Rails Tutorial by Michael Hartl.

  • Ruby version 3.1.2
  • Rails version 7.0.3.1

Getting started

clone the repo and then install gems:

gem install bundler
bundle config set --local without 'production'
bundle install

migrate the database:

rails db:migrate

run the test suite

rails test

if tests pass, run server

rails server