Is there a difference between these two commands ?
% heroku create
and:
% heroku apps:create
heroku create is an alias of heroku apps:create:
heroku create
heroku apps:create
EXAMPLES $ heroku apps:create Creating app... done, stack is heroku-22 https://floating-dragon-42.heroku.com/ | https://git.heroku.com/floating-dragon-42.git # or just $ heroku create
And here's the source, where the same command gets wired up as both apps:create and create.
apps:create
create
heroku createis an alias ofheroku apps:create:And here's the source, where the same command gets wired up as both
apps:createandcreate.