heroku procfile laravel

C++
git init
echo 'web: vendor/bin/heroku-php-apache2 public/' >> Procfile
git add .
git commit -m 'init'
heroku create [app-name]
heroku config:set APP_KEY=$(php artisan key:generate --show)
git push heroku
Source

Also in C++: