Deploy Laravel application with database to Heroku

safventure11000

Saf11000

Posted on May 16, 2020

Deploy Laravel application with database to Heroku

Buy Me A Coffee

Why Heroku?

I would like to start my blog with the question “why” as there are lots of technologies to choose from that are maybe better and more convenient to use but after all, it’s all about personal preferences.

So why Heroku?

Heroku is a public PaaS (Platform as a Service) provider that makes it easy to deploy applications written using several technology stacks at no cost. Application developers all around the globe use Heroku-like services to implement and test their applications remotely without any pain.
It’s free and easy to use.

Prepare your Laravel app

On this tutorial, I will use the repo : https://github.com/rappasoft/laravel-boilerplate. Laravel Boilerplate provides you with a massive head start on any size web application. It comes with a full featured access control system out of the box with an easy to learn API and is built on a Bootstrap foundation with a front and backend architecture. A big thanks to all who made contributions to this open source laravel app. Go ahead, fork and clone that repo or you can use your own depending on your preference.

I assume you tested your app on local and everything worked fine before proceeding to set up the heroku.

Prepare your Heroku CLI
You can download heroku-cli at:

https://devcenter.heroku.com/articles/heroku-cli#download-and-install.

Download and install Heroku according to your OS.
Once installation is finished, go back to your terminal and try to execute:

heroku login

The heroku login will appear. Click login.
Alt Text

When you go back to your terminal you will see something like this:
Alt Text

Create Procfile inside your main Laravel

Inside your Procfile, put this code line.
web: vendor/bin/heroku-php-apache2 public/

Alt Text

Go back to your terminal and type:

git init - This is for git initialization
heroku create - This command will create your app and repository name in Heroku

Alt Text

After that, commit and push your project to Heroku.

git add .
git commit –m “first commit”
git push heroku master
Alt Text

Now, go to heroku dashboard, you will see something like this.
Alt Text

Try to access your app by clicking Open app button.
Alt Text

This will give you a 500 server error because we have not set any configuration from our .env file on our Laravel app into Heroku.

Add Config Vars setttings in Heroku

Click settings then add the config vars like below. Follow some config in your .env file. The APP_ENV is production while APP_URL is your heroku url. Please refer below my configuration.
Alt Text
Alt Text

Try to access your app. You should see your app is successfully deployed now.
Alt Text

Configure database
Lastly, we will configure our database so that we can run migrations and seeders in Heroku. Actually, we can use MySQL but we need to upgrade our membership. That’s why in this tutorial, we will be using PostgreSQL because it’s free. :)

Click on Resources Menu. Then search for Postgres.
Alt Text

Click install Heroku Postgres. After successful installation, heroku postgres is available in our dashboard resources just like below.

Alt Text

After that, go to your terminal and type:

heroku config
Alt Text

Take note on your DATABASE_URL.

Change DATABASE_URL to the url on your heroku config.

Sample Heroku config setup:

Alt Text

Set pgsql as your default database setup.

Alt Text

So far, this is the best practice I know. Please read comments section for details or share better practice you know :).

Now, we will commit and push our changes in heroku repo. In your terminal run these commands below.

git add .
git commit –m “update db connection”
git push heroku master

Then, run migration in heroku.

heroku run php artisan migrate
Alt Text

After migration, don’t forget to execute
heroku run php artisan db:seed
Alt Text

Then access your heroku app

http://whispering-wave-57771.herokuapp.com/.
Use the email and password below to explore laravel-boilerplate.
email: admin@admin.com
password: secret
Alt Text

To rename your app, execute the ff:

heroku apps:rename newname

There you have it! You now have a running laravel-boilerplate app with database deployed in heroku.

Hopefully this tutorial is useful to you.

Ending this tutorial with something I read last night which I think is worth sharing. 🙂

Alt Text
Alt Text

https://stackoverflow.blog/2020/05/14/the-most-successful-developers-share-more-than-they-take/

💖 💪 🙅 🚩
safventure11000
Saf11000

Posted on May 16, 2020

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related