Skip to content
JP Barbosa edited this page Jul 23, 2015 · 2 revisions

Setup

Install Rails globally
gem install rails -v 4.2.3
Create new app
rails new rails-apz
Enter in the app directory
cd rails-apz
Start Rails server
rails s
Open app in the browser
open http://localhost:3000
Create Git Repo, add all files and commit
git init
git add .
git commit -m "Basic Rails app files"
Next step: Basic CRUD