Output of successful first deploy
From DevchixWiki
smei@NINOHE ~/Desktop/ruby_on_rails/test_app (master)
$ git push heroku master
The authenticity of host 'heroku.com (75.101.145.87)' can't be established.
RSA key fingerprint is 8b:48:5e:67:0e:c9:16:47:32:f2:87:0c:1f:c8:60:ad.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'heroku.com,75.101.145.87' (RSA) to the list of known hosts.
Counting objects: 60, done.
Compressing objects: 100% (54/54), done.
Writing objects: 100% (60/60), 79.03 KiB, done.
Total 60 (delta 10), reused 0 (delta 0)
-----> Heroku receiving push
-----> Rails app detected
Compiled slug size is 080K
-----> Launching...... done
App deployed to Heroku
To git@heroku.com:floating-winter-18.git
* [new branch] master -> master
In the output above you'll find your Heroku application name. They assign a unique name to each application you create, and you'll need that name to be able to find your app later! It's in the second to last line of the output, between the : and the .git. So in this example, the Heroku application name is floating-winter-18.

