たれみみマンデー

本番環境シェルでリセット

     deploy.rb

     %x[git pull]                                                                                                        

     %x[kill -9 `pgrep -f 'unicorn' `]

     %x[RAILS_ENV=production DISABLE_DATABASE_ENVIRONMENT_CHECK=1 bundle exec rake db:migrate:reset]

     %x[RAILS_ENV=production DISABLE_DATABASE_ENVIRONMENT_CHECK=1 bundle exec rake db:seed]

     %x[bundle exec rake assets:precompile RAILS_ENV=production]

     %x[unicorn_rails -c /var/www/rails/gappin/config/unicorn.conf.rb -D -E production]

     %x[sudo nginx -s reload]