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?

AWSにseed値を適用する方法

Last updated at Posted at 2024-11-16

記事概要

AWSサーバーを本番環境として利用している場合の、seeds.rbファイルの適用手順を説明する。

言語やフレームワーク

使用技術
フロントエンド HTML
CSS
バックエンド Ruby 3.2.0
Ruby on Rails 7.0.8.6
データベース MySQL(mariadb)
インフラ AWS
API -
その他 -

前提

  • db/seeds.rbに、シード値を記述している
  • AWSサーバーに上記をデプロイしている
  • AWSサーバーのDBが起動している
  • AWSサーバーのDBに、シード値を登録するテーブルが存在する

手順

  1. EC2にログイン
  2. パスの移動
    % cd /var/www/[リポジトリ名]/current
    
  3. シード値適用のコマンドを実行
    % rake db:seed RAILS_ENV=production
    

補足:コマンド実行確認

コマンド実行されているかをターミナルで確認したい場合、seeds.rbファイルの先頭にstart seeding、最終行にdoneと記述する

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?