take advantage of normalization

This commit is contained in:
Mark McGranaghan 2012-11-18 10:00:39 -08:00
parent 2806e3d23c
commit 50715dfbd2

View File

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