目次
Laravelのインストール
laravel new project_name
Gitレポジトリの作成
git init
git commit -m 'init'
.gitignoreファイルの修正。
/vendor
/node_modules
/public/storage
Homestead.yaml
Homestead.json
.env
# Laravel 5 & Lumen specific
bootstrap/cache/
storage/
.env.*.php
.env.php
ファイルのコミット。
git add . git commit -m 'init files'
リモートリポジトリの作成
hub create -p -d "project description"
git push origin master
https://hub.github.com/hub.1.html
– -p プライベートリポジトリ
– -d ディスクリプション
日本語化
http://qiita.com/ponko2/items/f2f59b43dae1561ceb50#%E6%97%A5%E6%9C%AC%E8%AA%9E%E5%8C%96
git add .
git commit -m 'add japanese translation files'
デバッガの追加
http://qiita.com/ponko2/items/f2f59b43dae1561ceb50#laravel-debugbar%E3%81%AE%E8%A8%AD%E5%AE%9A
Lravel Collectiveの導入
http://qiita.com/ponko2/items/f2f59b43dae1561ceb50#laravel-collective%E3%81%AE%E8%A8%AD%E5%AE%9A
whoopsの設定
http://qiita.com/ponko2/items/f2f59b43dae1561ceb50#whoops%E3%81%AE%E8%A8%AD%E5%AE%9A
Laravel Generatorのインストール
http://labs.infyom.com/laravelgenerator/docs/getting-started/installation
Laravel IDE Helperのインストール
https://github.com/barryvdh/laravel-ide-helper
composer require barryvdh/laravel-ide-helper --dev