「Tabetai」の版間の差分
提供: wikipokpok
(→準備) |
(→create application) |
||
17行目: | 17行目: | ||
% bin/setup | % bin/setup | ||
+ | |||
+ | == テスト用のデータで開発用のデータをつくる設定 == | ||
+ | <nowiki># db/seeds.rb | ||
+ | |||
+ | puts "\n== Seeding the database with fixtures ==" | ||
+ | system("bin/rails db:fixtures:load")</nowiki> |
2023年7月5日 (水) 08:10時点における版
準備
プロジェクトディレクトリ作成 移動
create application
% rails new . --css=tailwind --css=sass --javascript=esbuild --database=postgresql
% bin/bundle add tailwindcss-rails
% bin/rails tailwindcss:install
gem 'devise', '~> 4.9', '>= 4.9.2'
% bundle install
% bin/setup
テスト用のデータで開発用のデータをつくる設定
# db/seeds.rb puts "\n== Seeding the database with fixtures ==" system("bin/rails db:fixtures:load")