Skip to content

Commit bd18f1f

Browse files
Update README.md
1 parent 6362d14 commit bd18f1f

File tree

1 file changed

+33
-17
lines changed

1 file changed

+33
-17
lines changed

README.md

Lines changed: 33 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -51,57 +51,73 @@ php artisan operations:make <operation_name> -e|--essential
5151

5252
### Process operations
5353

54-
- **Process all new operation files:**
54+
Process all new operation files:
5555
```shell
5656
php artisan operations:process
5757
```
5858

59-
- **Force synchronous execution:**
59+
Force synchronous execution:
6060
```shell
6161
php artisan operations:process --sync
6262
```
6363

64-
- **Force asynchronous execution:**
64+
Force asynchronous execution:
6565
```shell
6666
php artisan operations:process --async
6767
```
6868

69-
- **Test mode (don't flag operations as processed):**
69+
Test mode (don't flag operations as processed):
7070
```shell
7171
php artisan operations:process --test
7272
```
7373

74-
- **Run command isolated:**
74+
Run command isolated:
7575
```shell
7676
php artisan operations:process --isolated
7777
```
7878

79-
- **Force a specific queue for the job:**
79+
Force a specific queue for the job:
8080
```shell
8181
php artisan operations:process --queue=<name>
8282
```
8383

84-
- **Only process operations with a specific tag:**
84+
Only process operations with a specific tag:
8585
```shell
8686
php artisan operations:process --tag=<tagname>
8787
```
8888

89-
- **Re-run one specific operation:**
89+
Re-run one specific operation:
9090
```shell
9191
php artisan operations:process <operation_name>
9292
```
9393

94-
9594
### Show operations
96-
```shell
97-
php artisan operations:show // show all operations
98-
php artisan operations:show pending // show pending operations
99-
php artisan operations:show processed // show processed operations
100-
php artisan operations:show disposed // show disposed operations
10195

102-
php artisan operations:show pending processed disposed // use multiple filters
103-
```
104-
96+
Show all operations:
97+
```shell
98+
php artisan operations:show
99+
```
100+
101+
Show pending operations:
102+
```shell
103+
php artisan operations:show pending
104+
```
105+
106+
Show processed operations:
107+
```shell
108+
php artisan operations:show processed
109+
```
110+
111+
Show disposed operations:
112+
```shell
113+
php artisan operations:show disposed
114+
```
115+
116+
Use multiple filters to show operations:
117+
```shell
118+
php artisan operations:show pending processed disposed
119+
```
120+
105121
## Tutorials
106122

107123
### CI/CD & Deployment-Process

0 commit comments

Comments
 (0)