- Ruby version 2.5.3
git clone [email protected]:harukikubota/narou-update-notify_line_bot.git
bundle update && bundle install
# local
rake db:migrate
# heroku
heroku run rake db:migrate
# local
rake db:seed
# heroku
heroku run rake db:seed
# local
rails s
curl localhost:3000/
# heroku
heroku restart
curl https://line-bot-notify-novel-update.herokuapp.com/
# local
rails c
# heroku
heroku run rails c
# local
cd log; view development.log
# heroku
heroku logs --tail
# 更新通知ジョブ lib/task/notify_narou_update.rake
rake narou_update_check_and_notify_update_episode
# デバッグ用 登録されている小説の最新話を通知できるようにする
rake update_novel_last_episode_id_minus_one
git add .
git commit -m "xxx something"
git push origin master
git push heroku master