January 28, 2019

cliツールでのhosts設定

VagrantならBonjour使えばhosts設定不要になるけどDockerだと難しそうだったのでhostsに戻って設定を楽にできる方法が ... Read more

January 26, 2019

コマンドライン引数を解析する

Laravelのartisanコマンドでは こう定義して protected $signature = 'email:send {user} {--queue}'; こう実行すると php artisan email:send 1 --queue コマンド内で取得できる。 $userId = $this->argument('user'); $queueName = $this->option('queue'); https://laravel.com/docs/master/artisan https://readouble.com/laravel/5.7/ja/artisan.html 定義と入力 ... Read more

January 21, 2019

段階別Laravelの開発環境

レベル1 php artisan serve https://laravel.com/docs/master/installation https://readouble.com/laravel/5.7/ja/installation.html Laravelの新規プロジェクト作成ができてる=PHPとcomposerが動くなら確実に動くので最初はこれだけでいい。 デー ... Read more

January 12, 2019

Yet Another Packagist Mirror

https://packagist.jp/ がまれに止まってるので自分でも作った。この年末年始も2週間くらい止まったままだったような。 https://packagist.kawax.biz/ https://github.com/kawax/packagist-bot S3+CloudFront CloudFrontなので日本以外のどこか ... Read more

December 22, 2018

Laravel Dusk用 Ubuntu18.04にChromeをインストール

curl https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add - echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' | sudo tee /etc/apt/sources.list.d/google-chrome.list sudo apt update sudo apt install google-chrome-stable 日本語フォント sudo apt install fonts-ipafont-gothic ChromeDriverはDuskに含まれてるのでLaravel Console Du ... Read more

December 15, 2018

Laravel + Vue.js ブロードキャスト通知

前回の続きでブロードキャスト通知部分を実際に作ってみる。 https://kawax.biz/laravel-vuejs-tutorial/ 前提 入門レベルではなくVue.jsを使うと何がいいのかという記事。 ローカルで動かす ... Read more

December 7, 2018

Laravel + Vue.js 普通の入門

前提 SPA(Single Page Application) ではない SSR(Server Side Rendering) ではない Laravelの基礎は分かってる人向け。 Vue.js初心者はガイドの「基本的な使い方」「コンポーネントの詳細 ... Read more

© kawax