LoginSignup
5
3

More than 5 years have passed since last update.

[rails]rails立ち上げメモ

Posted at

立ち上げしたのでメモ

今回新規プロジェクトを立ち上げたのでメモ。

コマンド

rails new application_name --database=mysql --skip-test-unit --skip-sprockets --webpack=react --webpack=vue

解説

  • rails new
    • railsの立ち上げ。
  • application_name
    • ここはプロジェクトネーム
  • --database=mysql
    • データベースの設定
  • --skip-test-unit
    • デフォルトのテストをスキップする(後々rspecで書くため)
  • --skip-sprockets
    • sprocketsをスキップ
  • --webpack=react
    • webpackerを入れる
  • --webpack=vue
    • vueも入れておく
5
3
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
5
3