Heroku create command clarification

17 views Asked by At

Is there a difference between these two commands ?

% heroku create

and:

% heroku apps:create
1

There are 1 answers

0
Chris On BEST ANSWER

heroku create is an alias of 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.