Skip to content

Latest commit

 

History

History
73 lines (67 loc) · 2.27 KB

README.md

File metadata and controls

73 lines (67 loc) · 2.27 KB

rails-guide

  • Create new application
  • Add postgres database
  • Install gems
  • Devise
  • Foundation
  • Active Admin
  • jquery-ui-rails
  • simple_form
  • jquery-turbolinks

Project - Create IT Capabilities Application

  1. Create git repo on github.com
  1. Clone to local
  1. Create new rails app
  • rails new it-capabilities
  1. Make sure it runs
  • bundle install
  • rails s
  1. Add postgresql
  • Remove the line gem 'sqlite3' from the gemfile
  • Add gem 'pg' to the gemfile
  • Add settings file
  • remove ‘development.sqllite3` file
  • Run rake db:create
  • Run rake db:migrate

Add the following gems