Last active
December 17, 2015 04:59
-
-
Save PharaohKJ/5554192 to your computer and use it in GitHub Desktop.
間違えて非公開にしちゃったので公開で。redmineをupdateしたあとに入力するコマンド忘れるのでMakefileにしておきます。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Redmineをアップデートしたら叩くmake | |
## make update | |
## としてくれ | |
# DBのアップデート | |
migration: | |
rake db:migrate RAILS_ENV="production" | |
# キャッシュの削除 | |
clean_cache: | |
rake tmp:cache:clear | |
rake tmp:sessions:clear | |
update: migration clean_cache |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment