make init
ブラウザにて http://127.0.0.1:8080 へアクセス
ユーザID:user01 パスワード:1234
$ composer install
$ npm install
$ mysql -u root -p****
create database lesson;
grant all privileges on lesson.* to lesson@localhost identified by 'secret';
exit
$ php artisan migrate --seed
$ php artisan passport:install
$ npm run watch
$ php artisan serve
Laravel development server started: <http://127.0.0.1:8000>
ブラウザにて http://127.0.0.1:8000 へアクセス