Last active
March 22, 2017 14:45
-
-
Save jarib/3d443c0fdd720f9f0835 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
set -e | |
git clone https://github.com/edsu/anon my-anon | |
cd my-anon | |
cp config.json.template config.json | |
read -p "Please add your config to $(pwd)/config.json, then press enter to continue" | |
heroku create | |
echo 'web: coffee anon.coffee' > Procfile | |
git add Procfile config.json | |
git commit -m "Added Procfile and config" | |
git push heroku master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Trying to upgrade my instance of anon on heroku I also ran into the Error R10 (Boot timeout) issue.
Apart from making Procfile specify
worker
I had to manually go to the heroku dashboard and set turn off theweb
dyno and turn on theworker
dyno (sinceheroku ps:scale worker=1
) now triggers a question about credit cards.