Skip to content

My exercises and projects of Ruby on Rails complete course in Udemy

License

Notifications You must be signed in to change notification settings

nelsonmfinda/notebook

Repository files navigation

Build Status Maintainability Test Coverage Inline docs

Notebook

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.

Development setup

This is a Ruby on Rails (4.2.5) application backed by SQLite3 database. There are two ways to run it locally:

  1. Setup a local development environment with the steps below.
  2. Use Rbenv to set Ruby 2.4.0 version for this project.

Things to install

  • Ruby: We recommend Ruby >= 2.4 . We recommend using Rbenv
  • SQLite: SQLite >= 3 required. Install via your system's package manager

Install Bundler

Bundle is used to handle the project's Ruby dependancies. You can install it via

gem install bundler

Setup and Running

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