2017 © Pedro Peláez
 

library laravel-base-project

Base Project with Laravel 4

image

shin1x1/laravel-base-project

Base Project with Laravel 4

  • Thursday, September 18, 2014
  • by shin1x1
  • Repository
  • 1 Watchers
  • 0 Stars
  • 12 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Laravel Base Project

Build Status, (*1)

My Base Project with Laravel 4, (*2)

Installation

use composer create-project command., (*3)

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

Enable Laravel 4 Debuger

https://github.com/barryvdh/laravel-debugbar, (*4)

$ php artisan debugbar:publish

Deploy to Heroku

remove composer.lock in .gitignore., (*5)

$ vim .gitignore
composer.lock <--- remove it

git init., (*6)

$ git init

execute heroku_create command., (*7)

$ ./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., (*8)

$ git add .
$ git commit -m 'init'
$ git push heroku master

The Versions