Skip to content

Instantly share code, notes, and snippets.

@jarib
Last active March 22, 2017 14:45
Show Gist options
  • Save jarib/3d443c0fdd720f9f0835 to your computer and use it in GitHub Desktop.
Save jarib/3d443c0fdd720f9f0835 to your computer and use it in GitHub Desktop.
#!/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
@lokal-profil
Copy link

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 the web dyno and turn on the worker dyno (since heroku ps:scale worker=1) now triggers a question about credit cards.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment