Search code examples
herokuheroku-cli

Heroku create command clarification


Is there a difference between these two commands ?

% heroku create

and:

% heroku apps:create

Solution

  • 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.