0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

laradockコマンド

0
Last updated at Posted at 2020-09-25

laradockフォルダ内で下記コマンドを実行しワークスペースコンテナに入る

docker-compose exec workspace bash
cd /var/www/web
composer install

npm install
npm run dev

DBマイグレーションを実行し、DBテーブルを作成

php artisan migrate

シーダーを実行し、テストデータ作成

php artisan db:seed --class=ItemsTableSeeder
php artisan db:seed --class=AdminUserTableSeeder

マイグレーション、シーダーの実行をやり直す場合

rm -rf storage/app/public/images
php artisan migrate:fresh
php artisan db:seed --class=ItemsTableSeeder
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?