OurBigBook
This section is about the file: heroku
The heroku helper allows us to omit the boring -a ourbigbook, e.g. we can just type:
./heroku logs -f
instead of:
./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 "$@"

Ancestors