This workshop will be retired on May 1, 2025.
Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
Start a free Courses trial
to watch this video
In this video, you'll learn how to install a Ruby on Rails Development Environment in Windows.
Note: A more current version of this workshop is available here.
Install Ruby
http://rubyinstaller.org/downloads/
Install cmdr
http://cmder.net/
Install git
http://git-scm.com/download/win
Configure git
git config --global user.name "Jason Seifer"
git config --global user.email jason@teamtreehouse.com
Download and Install MySQL
MySQL can be downloaded from the MySQL Download Page.
Install sublimetext
Create a new app
mkdir projects
cd projects
rails new testapp
cd testapp
subl -n .
bin\rails server
Create a quick scaffold
bin\rails generate scaffold name title:string first:string last:string
bin\rake db:migrate
bin\rails s
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign upRelated Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up