Ruby Rail First Step: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 26: | Line 26: | ||
[http://www.railsdebutant.org/fr_guides/generators.html Creating and Customizing Rails Generators & Templates] | [http://www.railsdebutant.org/fr_guides/generators.html Creating and Customizing Rails Generators & Templates] | ||
* Create Tables | |||
<pre>rake db:migrate</pre> |
Revision as of 22:58, 14 November 2014
- Your first application with MySQL
rails new firstapp -d mysql
- Move into the application directory
cd firstapp
- If you setup MySQL or Postgres with a username/password, modify the
- config/database.yml file to contain the username/password that you specified
- Create the database
rake db:create
- Start the server
rails server
- Visite the web site
- change the default page
Add the following into config/routes.rb
root :to => "home#index"
- Generate a ressource
rails generate scaffold Post name:string title:string content:text
Creating and Customizing Rails Generators & Templates
- Create Tables
rake db:migrate