shin1x1 / laravel-base-project by shin1x1

Base Project with Laravel 4
17
0
3
Package Data
Maintainer Username: shin1x1
Package Create Date: 2014-06-07
Package Last Update: 2014-09-18
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-30 15:03:48
Package Statistics
Total Downloads: 17
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 3
Total Forks: 2
Total Open Issues: 0

Laravel Base Project

Build Status

My Base Project with Laravel 4

Installation

use composer create-project command.

$ composer create-project shin1x1/laravel-base-project . -s dev

Enable Laravel 4 Debuger

https://github.com/barryvdh/laravel-debugbar

$ php artisan debugbar:publish

Deploy to Heroku

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/ | git@heroku.com: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