Backend API

Heroku Hosting (Laravel Project)

Now that we have our basic app set up, we can go ahead to initialize git and create our heroku app, if you don’t already have heroku setup on your computer or you are completely new to heroku, follow this article (https://devcenter.heroku.com/articles/heroku-cli) to create an account and setup your computer.

$ git init
$ git add .
$ git commit -m "Initialize git repo"

//creates heroku app and adds heroku to git remote 
$ heroku create

Now when you login to your heroku dashboard, you should see your newly created app there like mine

lets make a quick list of things we need to do to configure our heroku app to work properly:

  1. Create a Procfile

  2. Setup mysql database

  3. Configure our app to use the mysql database

1. Create a Procfile

All Heroku applications run in a collection of lightweight Linux containers called dynos. Creating a ‘ Procfile’ at the root of our app directory would enable us to specify the commands that are exceuted by the app’s dynos. You can read up on dynos here https://devcenter.heroku.com/articles/dynos. Also for more information on Procfile read this article https://devcenter.heroku.com/articles/procfile.

Next create a procfile at the root of the app’s directory, and enter the following:

web: vendor/bin/heroku-php-apache2 public/

2. Setup mysql database by adding the JawsDB MySQL addon

Navigate to the resources tab in the heroku dashboard, search for “JawsDB MySQL” under addons and select “JawsDB MySQL”.

Select the plan you want, we would use the free hobby dev plan here and click provision.

We should now have a new entry in our environment variables. Navigate to the settings tab and click “Reveal config” vars button to display the environment variables.

3.Final Step

git push heroku master

Last updated