Heroku Application with Custom name and Url
If you would like to create a New Application with your own name for free on Heroku Please follow this link Heroku : Complete Setup
If you wanted to create a new application with your custom name , First you need to login to Heroku from command line using this command
After that you need to enter your credentials email address and password. Once you logged in you need to run this command
Creating an App Without a Name
The app name argument (“myapp”) is optional. If no app name is specified, a random name will be generated.
If you wanted to create a new application with your custom name , First you need to login to Heroku from command line using this command
$ heroku login
After that you need to enter your credentials email address and password. Once you logged in you need to run this command
$ heroku create myapp
Created http://myapp.heroku.com/ | git@heroku.com:myapp.git
Git remote heroku added
Using this command you can create a new application with custom name and urlCreating an App Without a Name
The app name argument (“myapp”) is optional. If no app name is specified, a random name will be generated.
$ heroku create
Created http://mystic-wind-83.heroku.com/ | git@heroku.com:mystic-wind-83.git
Comments
Post a Comment