Laravel 4 설치

install-laravel.sh 란 이름으로 다음의 파일을 작성해서 사용하면 아직 정식 릴리즈가 되지않은 상황에서 편하게 설치할 수 있다.

#!/bin/sh

git clone https://github.com/laravel/laravel.git $1
cd $1

# Required for getting L4 dev
git reset --hard HEAD
git checkout develop
git remote rename origin upstream

# Do the house cleaning
chmod -R 0777 app/storage
curl -s https://getcomposer.org/installer | php
php composer.phar install
php artisan key:generate

참고
– http://niallobrien.me/category/laravel/
– https://coderwall.com/p/spwlea
http://forums.laravel.io/viewtopic.php?id=7310

Leave a Reply

Your email address will not be published. Required fields are marked *