Ruby Rail First Step: Difference between revisions

From Objectif Client Inc
Jump to navigation Jump to search
No edit summary
No edit summary
Line 4: Line 4:


# Move into the application directory
# Move into the application directory
cd firstapp
<pre>cd firstapp</pre>


# If you setup MySQL or Postgres with a username/password, modify the
# If you setup MySQL or Postgres with a username/password, modify the

Revision as of 19:03, 13 November 2014

  • Your first application with 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