Last updated for Version 5 Hotfix
- Old ID:
43 - New ID:
36 - Old Effect: High crit chance (43)
| class BoggleBoard | |
| #your code here | |
| end | |
| dice_grid = [["b", "r", "a", "e"], | |
| ["i", "o", "d", "t"], | |
| ["e", "c", "l", "r"], |
| 1. cd into root directory of app you want to push | |
| 2. add a Procfile if you haven't already, it tells heroku how to run your app | |
| 2. initialize a new git repsitory ( git init) | |
| 3. add the files in the git repository ( git add .) | |
| 4. commit the files in the git repository (git commit ) | |
| 5. login to heroku if you haven't already (heroku login) | |
| 6. create a new heroku app (heroku create) | |
| 7. push from your current branch to heroku (git push heroku YOUR_BRANCH) | |
| 8. run any necessary app migrations (heroku run rake MIGRATION_NAME) | |
| 9. if anything fails, look in the heroku logs, google the errors and try again |