How to Install Heroku Laravel Project (2 Commands)

Do you want to install a new project using Heroku Laravel? Here is the brief and core steps. Just simply perform this two steps and your work is done!

Input the command 1:

composer create-project laravel/laravel --prefer-dist hello_laravel_heroku

Input the command 2:

cd hello_laravel_heroku

Full screenshot:

$ composer create-project laravel/laravel --prefer-dist hello_laravel_heroku
Installing laravel/laravel (v5.1.11)
  - Installing laravel/laravel (v5.1.11)
    Downloading: 100%

Created project in hello_laravel_heroku
...
...

$ cd hello_laravel_heroku

These are the simple commands to install a laravel project on Heroku servers.

Related:

Leave a Comment