Created
January 20, 2017 17:01
-
-
Save talha08/465fd9addc48b26d2800fcd2fa26dc5c to your computer and use it in GitHub Desktop.
Heroku Deploy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git init | |
| git add . | |
| git commit -m "laravel on heroku" | |
| git status | |
| echo web: vendor/bin/heroku-php-apache2 public/ > Procfile | |
| git status | |
| git add . | |
| git commit -m "profile commit" | |
| heroku create inspinia | |
| heroku buildpacks:set heroku/php | |
| git push heroku master | |
| heroku open | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment