Closed djkazunoko closed 8 months ago
DBにpostgresql使うから-d postgresql
テストにはRSpecを使うから--skip-test
CSSにはtailwind CSSを使うから--css=tailwind
rails7のasset pipelineについて
sprockets
とimportmap-rails
で良さそう
sprockets
かpropshaft
かについては、propshaft
はまだベータ版ということでsprockets
にするrails new --css=tailwind
すれば、tailwindcss-rails
gemが入るはず(Node.js不要)その他のskipオプションは付けない。不要なら後から消せばいい。
実行予定のコマンド
rails new . -d postgresql --skip-test --css=tailwind
rails new
してから1度もrails起動してないことに気づいたので、以下を実行。
bin/setup
を実行(db/schema.rb
が作成された)bin/dev
を実行して、ブラウザからlocalhost:3000
にアクセスできたdb/schema.rb
を削除$ bin/setup
== Installing dependencies ==
The Gemfile's dependencies are satisfied
== Preparing database ==
Created database 'nijikaigo_development'
Created database 'nijikaigo_test'
== Removing old logs and tempfiles ==
== Restarting application server ==
カレントディレクトリに直接作成したいから
rails new .