33 lines
538 B
Markdown
33 lines
538 B
Markdown
|
|
## Commands
|
|
|
|
Updates information about courses and chapters
|
|
|
|
```php
|
|
php artisan symfonycast:update
|
|
```
|
|
|
|
Dispatch chapters marked as sync offline to queue for download
|
|
|
|
```php
|
|
php artisan symfonycast:sync
|
|
```
|
|
Dispatch chapters without file size to queue for update
|
|
|
|
```php
|
|
php artisan symfonycast:video_size
|
|
```
|
|
|
|
## Queues
|
|
|
|
Downloading chapters marked as sync offline:
|
|
|
|
```php
|
|
php artisan queue:work --queue=downloadVideoFile
|
|
```
|
|
Get information about file size of chapters:
|
|
|
|
```php
|
|
php artisan queue:work --queue=getVideoFileSize
|
|
```
|