初歩

アプリケーションの作成

$ rails new appname
オプション

DB設定

/config/database.yml

Gemfile

アプリケーションで利用するgemを定義する。

$ bundle update
$ bundle install

エラー。

Could not find a JavaScript runtime.

Gemfile修正。
#gem 'therubyracer', platforms: :ruby
gem 'therubyracer', platforms: :ruby

$ bundle install
$ rails generate scaffold User name:string email:string

DB作成

$ rake db:create

サーバー立ち上げ

$ rails server

ec2セキュリティグループのport3000を開放。
http://domain:3000