Skip to content

Commit 9971c82

Browse files
committed
Fix command that sets APP_URL in Heroku.md
The `heroku apps:info --shell` command outputs the app's URL in an attribute named `web-url`, not `web_url` (with a hyphen, not an underscore).
1 parent 7188391 commit 9971c82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/Heroku.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cd stringer
44
heroku create
55
git push heroku master
66

7-
heroku config:set APP_URL=`heroku apps:info --shell | grep web_url | cut -d= -f2`
7+
heroku config:set APP_URL=`heroku apps:info --shell | grep web-url | cut -d= -f2`
88
heroku config:set SECRET_TOKEN=`openssl rand -hex 20`
99

1010
heroku run rake db:migrate

0 commit comments

Comments
 (0)