Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 551 Bytes

publish.md

File metadata and controls

21 lines (15 loc) · 551 Bytes

###0.初始化环境

composer update

###1.初始化目录权限

chmod -R 775 storage/
chown -R www:www storage/
chmod -R 775 bootstrap/cache

###2.生成图片文件夹

php artisan storage:link

###4.创建定时任务

* * * * * php /path/to/artisan schedule:run >> /dev/null 2>&1

###5.创建队列进程

php artisan queue:work redis
php artisan queue:work redis --queue=book-init-event
php artisan queue:work redis --queue=book-update-event

###6.