Advertisement
Guest User

Untitled

a guest
Sep 4th, 2015
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. ```
  2. $ cat Envfile
  3. your-heroku-app-name:
  4. LANG: ja_JP.UTF-8
  5. $ heroku config -a your-heroku-app-name
  6. === your-heroku-app-name Config Vars
  7. LANG: en_US.UTF-8
  8. $ ruby path/to/heroku_config.rb # dry run
  9. I, [2015-09-04T19:13:17.972419 #14090] INFO -- : your-heroku-app-name
  10. I, [2015-09-04T19:13:17.972511 #14090] INFO -- : C LANG=ja_JP.UTF-8
  11. $ ruby path/to/heroku_config.rb -a # apply to heroku app
  12. I, [2015-09-04T19:13:17.972419 #14090] INFO -- : your-heroku-app-name
  13. I, [2015-09-04T19:13:17.972511 #14090] INFO -- : C LANG=ja_JP.UTF-8
  14. $ heroku config -a your-heroku-app-name
  15. === your-heroku-app-name Config Vars
  16. LANG: ja_JP.UTF-8
  17. $ ruby path/to/heroku_config.rb -a # apply to heroku app
  18. I, [2015-09-04T19:13:17.972419 #14090] INFO -- : your-heroku-app-name
  19. I, [2015-09-04T19:13:17.972511 #14090] INFO -- : Nothing to change
  20. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement