Laravel 5.2
php -v >= 5.5.9
composer
nodejs
Nginx 指到public
目录下
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}
composer create-project --prefer-dist wilon/slug-laravel your_project_name
# db
php artisan migrate --force
# gulp
cd public
npm install && npm start