you r here... RSS

Archive

Mar
8th
Sat
permalink

# Installed Rails

#gem install rails —include-dependencies

# Created an aplication with the rails command $rails exchange

# Created the databases for the application with the rake command $ rake db:create:all

# Used the script/generate command to create the scaffolding for the application $ ruby script/generate scaffold Movie title:string description:text one_sheet_url:string

# Created the database table using the generated migration file $ rake db:migrate

# Started the webserver with the script/server command $ ruby script/server

# Pointed our web browser to the application and started entering and editing data http://localhost:3000/movies