Ruby Rail First Step

From Objectif Client Inc
Revision as of 19:02, 13 November 2014 by Nicolas Rollin (talk | contribs) (Created page with "#### If you want to use MySQL <pre>rails new firstapp -d mysql</pre> # Move into the application directory cd firstapp # If you setup MySQL or Postgres with a username/pass...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
        1. If you want to use MySQL
rails new firstapp -d mysql
  1. Move into the application directory

cd firstapp

  1. If you setup MySQL or Postgres with a username/password, modify the
  2. config/database.yml file to contain the username/password that you specified
  1. Create the database
rake db:create
rails server