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 new コマンドのオプション

Last updated at Posted at 2023-03-19

rails newで新しいアプリを作成するときに指定できるオプションをまとめてみました。

  • データベースを指定(例:MySQL)
    次のいずれかでOK(おそらく)
rails new アプリケーション名 -d mysql
rails new アプリケーション名 --database=mysql
  • テストを作成しない
    RailsではデフォルトでMinitestが使われるため、Rspecなど他のものを使いたい場合にこのオプションをつける
rails new アプリケーション名 -T
  • Javascriptをインストールしない
    次のいずれかでOK(おそらく)
rails new アプリケーション名 -j
rails new アプリケーション名 --skip-javascript
  • ファイルの上書き
rails new アプリケーション名 -f

参考サイト

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?