Skip to content

01 Init a Rails 4.2.4 Project

Dave Strus edited this page Nov 4, 2015 · 1 revision

Create a new Rails project

$ rvm install 2.2.3
$ rvm use 2.2.3
$ gem install rails --version '4.2.4'
$ rails new nevernote -d postgresql
$ cd nevernote
$ git init
$ git add .
$ git commit -m "Init new rails project with 4.2.4"

Create a GitHub repo

Create a new repository in your GitHub account. Follow the instructions to add this repo as a remote for your local project, and push to that remote.

$ git remote add origin [email protected]:[YOUR GITHUB]/nevernote.git
$ git push -u origin master