The heroku helper allows us to omit the boring instead of:
-a ourbigbook
, e.g. we can just type:./heroku logs -f
./heroku logs -a ourbigbook -f
heroku
#!/usr/bin/env bash
# https://docs.ourbigbook.com/file/heroku
set -eu
cmd="$1"
shift
heroku "$cmd" -a ourbigbook "$@"