Skip to content

Blog app from the Ruby on Rails 6.0 guide

License

Notifications You must be signed in to change notification settings

johnjago/rails-blog

Repository files navigation

Getting Started with Rails

This is the blog application made in the Getting Started with Rails guide for Ruby on Rails v6.0.0.

Requirements

  • Ruby 2.5.0 or later
  • SQLite3

Starting the blog application

Install dependencies:

bundle install

Create database and tables:

bundle exec rake db:create db:migrate

Start the development server:

rails server

License

Unlicense