Sha256: 46554e3ab03005ae0fed593c3c99258491896e2368bc8f3fa799df7ad1ae12ab
Contents?: true
Size: 355 Bytes
Versions: 7
Compression:
Stored size: 355 Bytes
Contents
#!/usr/bin/env bash set -euo pipefail IFS=$'\n\t' set -vx bundle install # Do any other automated setup that you need to do here filename=".env" if [ ! -f $filename ] then touch $filename echo "API_HOST=https://janio-api-int.herokuapp.com" >> $filename echo "API_TOKEN=" >> $filename echo "JANIO_API_GEM_ENV=development" >> $filename fi
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
janio_api-0.2.1 | bin/setup |
janio_api-0.2.0 | bin/setup |
janio_api-0.1.11 | bin/setup |
janio_api-0.1.10 | bin/setup |
janio_api-0.1.9 | bin/setup |
janio_api-0.1.8 | bin/setup |
janio_api-0.1.7 | bin/setup |