環境構築
・Gemのインストール
bundle install
・NODEパッケージのインストール
npm install --no-bin-links ※Macでは--no-bin-linksオプションは不要
package.jsonを読み込んでいる?
・DBの作成
bundle exec rake db:create
・マイグレーションの実行
bundle exec rake db:migrate
db/migrateを読み込んでいる
・Seederの実行
bundle exec rake db:seed
db/seedsを読み込んでいる
・Assetのpreコンパイル
bundle exec rake assets:precompile
Assetの中身をコンパイルしている。Asset内を変更したらこれを実行
まず最初にすること
データベース作成
1.テーブルの作成
rails g model テーブル名 カラム名:データ型
rails g model m_exclusion_domain enterprise_code:string exclusion_domain