開発環境は以下のような準備をしていただけるとスムーズかも。
docker未導入なので、モダンでなく、たいへん申し訳ございません 🙇
環境の作成でなにか詰まったり困ったら、当gistにコメントいただるといいかもしれません (が、勤務時間外だと返信が遅くなるかもしれません)
version | install example | |
---|---|---|
ruby | ruby 2.3.7p456 (2018-03-28 revision 63024) [x86_64-darwin17] | rbenv install -v 2.3.7 && rbenv rehash |
postgres | 9.5.13 | brew install [email protected] && brew switch [email protected] 9.5.13 && postgres -D /usr/local/var/[email protected] |
redis | 4.0.9 | brew install redis |
ghostscript | 9.22 | brew install ghostscript |
seed_fu で下記のような
ERROR: column "increment_by" does not exist
が表示される場合は$ �bundle exec rake db:drop
してから seed_fu するとうまくいくかも
引用元: https://github.com/NUTFes/group-manager/wiki/postgres%E3%81%AE%E3%83%90%E3%83%BC%E3%82%B8%E3%83%A7%E3%83%B3%E3%81%8C10.x%E3%81%A7%E3%82%A8%E3%83%A9%E3%83%BC
もしそれでもだめなら下記を試してみる
$ brew install postgresql
$ brew unlink postgresql && brew link postgresql
$ bundle exec rake db:drop
$ bundle exec rake db:create
$ bundle exec rake db:migrate
$ bundle exec rake db:seed_fu