LoginSignup
0
0

More than 3 years have passed since last update.

Rails アプリの作成初めかた

Posted at

・画面に表示する

1.Railsでアプリの土台を作る

$ rails 5.2.1 new アプリ名 -d mysql
 必要なファイルが一気にできる

2.ルーティングを作成
 config/routes.rb にdef index end
 
3.コントローラー作成
 $ rails g controller ファイル名
contlloers/applocation_controller.rb
HTTPメソッド 'ファイル名' => 'ファイル名#index'

4.ビューファイル
app/views にindex.html.erbファイルを作成し、

Hello World!

 

・データベースに保存する

5. データベースの作成
 rails db:create

6.モデル作成
 rails g model ファイル名
 マイグレーションファイルができる

7.カラムの作成
 db/migrate/ファイル名.rb にカラム記入
  カラムデータ型指定 :カラム名

8.マイグレート
 rails db:migrate

 

☆WEll DONE(^^♪☆

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0