Hosting on Heroku

Go to Heroku.com, Sign in or create new account and go to the Dasboard. In the right upper corner click on New and choose Create new app.

Set the name to your application and click on Create app.

Next, you will be redirecetd to the Deploy page of your application and choose the Heroku Git as Deployment method.

Below you will find instructions on how to deploy your application with the Heroku Git. Let's consider each of the steps in more details:

  1. Go to the terminal of your IDE.

  2. Download and install the Heroku CLI.

  1. If you haven't already, log in to your Heroku account and follow the prompts to create a new SSH public key.

heroku login

Press any key to open up the browser to login or q to exit, afterwards, you will be redirected to the new window on your browser, please click on Log in button and go back to your IDE.

  1. Next, move to your project frontend folder

cd name-of-your-project/frontend

  1. Create a new Git repository, initialize a git repository in a new or existing directory:

git init

heroku git:remote -a name-of-your-project

  1. Commit your code to the repository and deploy it to Heroku using Git.

git add .

git commit -am "make it better"

git push heroku master

  1. For existing repositories, simply add the heroku remote

heroku git:remote -a one-page-project

  1. To open your application you have 2 options, first one using the terminal IDE

heroku open

Or go to the your application settings on Heroku website and click on Open app button.

If you face any difficulties, please message us on our Discord, Forum, Twitter, or Facebook. We will respond to your inquiry as quickly as possible!


← Hosting a One-Page App on AWS                                  Hosting on Google Cloud →