Brew Heroku
Heroku is a Platform-as-a-Service (PaaS) that simplifies deploying your apps online.
Installation


Heroku is a Platform-as-a-Service (PaaS) that simplifies deploying your apps online. Assuming you have a Heroku account (sign up if you don't), let's install the Heroku Client for the command-line using Homebrew.brew install heroku/brew/heroku The formula might not have the latest version of the Heroku Client, which is updated pretty often. $ brew install heroku/brew/heroku. Download the appropriate installer for your Windows installation: 64-bit installer. 32-bit installer. Ubuntu 16+ Run the following from your terminal: $ sudo snap install heroku -classic. Snap is available on other Linux OS’s as well.
Assuming you have a Heroku account (sign up if you don't), let's install the Heroku Client for the command-line using Homebrew.
The formula might not have the latest version of the Heroku Client, which is updated pretty often. Let's update it now:
Don't be afraid to run heroku update
every now and then to always have the most recent version.
Setup
Brew Install Heroku
Login to your Heroku account using your email and password:
If this is a new account, and since you don't already have a public SSH key in your ~/.ssh
directory, it will offer to create one for you. It will also upload the key to your Heroku account, which will allow you to deploy apps from this computer.
If it didn't offer create the SSH key for you (i.e. your Heroku account already has SSH keys associated with it), you can do so manually by running:
Keep the default file name and skip the passphrase by just hitting Enter both times. Then, add the key to your Heroku account:
Usage
Brew Heroku
Once your keys are in place and you are authorized, you're ready to deploy apps. Heroku has a getting started guide, which has all the information you need (the one linked here is for Python, but there is one for every popular language). Heroku uses Git to push code for deployment, so make sure your app is under Git version control.
A cheat sheet for deployment:
Brew Uninstall Heroku
The Heroku Dev Center is where you will find more information.
