shin1x1/laravel-base-project is a Laravel package for base project with laravel 4.
It currently has 0 GitHub stars and 17 downloads on Packagist.
Install it with composer require shin1x1/laravel-base-project.
Discover more Laravel packages by shin1x1
or browse all Laravel packages to compare alternatives.
Last updated
My Base Project with Laravel 4
use composer create-project command.
$ composer create-project shin1x1/laravel-base-project . -s dev
https://github.com/barryvdh/laravel-debugbar
$ php artisan debugbar:publish
remove composer.lock in .gitignore.
$ vim .gitignore
composer.lock <--- remove it
git init.
$ git init
execute heroku_create command.
$ ./heroku_create
Creating mighty-sea-4703... done, stack is cedar
http://xxxxxxxxxxxxx.herokuapp.com/ | [email protected]:xxxxxxxxxxxx.git
Git remote heroku added
Setting config vars and restarting xxxxxxxxxxx... done, v3
LARAVEL_ENV: heroku
Adding heroku-postgresql on xxxxxxxxx... done, v5 (free)
...
deploy application to heroku.
$ git add .
$ git commit -m 'init'
$ git push heroku master