revert due to anvil flakiness

This commit is contained in:
Mark McGranaghan 2012-11-18 16:02:00 -08:00
parent b8840aa19d
commit fae2b18dd7

View File

@ -49,14 +49,16 @@ $ foreman open
Basic setup: Basic setup:
```bash ```bash
$ export DEPLOY=$USER
$ export APP=gobyexample-$USER $ export APP=gobyexample-$USER
$ heroku create $APP $ heroku create $APP -r $DEPLOY
$ heroku config:add -a $APP $ heroku config:add -a $APP
BUILDPACK_URL=https://github.com/mmcgrana/buildpack-go.git
CANONICAL_HOST=$APP.herokuapp.com \ CANONICAL_HOST=$APP.herokuapp.com \
FORCE_HTTPS=1 \ FORCE_HTTPS=1 \
AUTH=go:byexample AUTH=go:byexample
$ heroku labs:enable dot-profile-d -a $APP $ heroku labs:enable dot-profile-d -a $APP
$ heroku build -r $APP -b https://github.com/mmcgrana/buildpack-go.git $ git push $DEPLOY master
$ heroku open -a $APP $ heroku open -a $APP
``` ```