0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Railsコマンド備忘録

Posted at

✨Railsコマンド備忘録

Railsアプリケーションを作成

% rails new アプリケーション名

Railsのバージョンを指定してアプリケーションを作成(6.0.0の場合)

% rails 6.0.0 new アプリケーション名

オプションを付けてアプリケーションを作成(6.0.0の場合)

% rails 6.0.0 new アプリケーション名 -オプション名

データベース管理システムにmysqlを指定

% rails new アプリケーション名 -d mysql

データベースを作成する

% rails db:create

ローカルサーバーを起動

% rails s

設定されているルーティングを確認

% rails routes

ファイルを生成する

% rails g ファイルの種類 生成するファイル名

コントローラーを作成

% rails g controller コントローラー名

例)postsコントローラーを作成

% 例)rails g controller posts

マイグレーションを実行

% rails db:migrate

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?