Skip to content

Commit ad097b2

Browse files
committed
updates README.md
1 parent 6299e37 commit ad097b2

File tree

1 file changed

+17
-8
lines changed

1 file changed

+17
-8
lines changed

README.md

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,25 @@
1-
![Laravel One-Time Operations](https://user-images.githubusercontent.com/65356688/224431782-550a6147-144d-408e-a412-4bd2b425dc15.jpg)
1+
![Laravel One-Time Operations](https://user-images.githubusercontent.com/65356688/224445279-9526bda2-ba1f-4add-8897-92fa80dd5973.jpg)
22
# Laravel One-Time Operations
33

4-
Run an operation once after each deployment - just like you do it with migrations!
4+
Run operations once after deployment - just like you do it with migrations!
5+
6+
-----
7+
8+
**Take your CI/CD to the next Level with Laravel One-Time Operations**! 🚀
9+
10+
Create specific classes for a one-time usage, that can be executed automatically after each deployment.
11+
Same as migrations they get processed once and then never again. Perfect for seeding or updating some data instantly after
12+
some database changes or feature updates.
513

614
This package is for you if...
715

8-
- you often create jobs to use just one single time **after a deployment**
9-
- you sometimes **forgot to execute** that one specific job and stuff got crazy
16+
- you regularly need to **update specific data** after you deployed new code
17+
- you often execute jobs just **only one single time** after a deployment
18+
- you sometimes **forget to execute** that one specific job and stuff gets crazy
1019
- your code gets **cluttered with jobs**, that are not being used anymore
20+
- your co-workers always need to be reminded to **execute that one job** after some database changes
1121
- you often seed or process data **in a migration file** (which is a big no-no!)
1222

13-
And the best thing: It works as easy as **Laravel migrations**!
1423

1524
## Installation
1625

@@ -56,7 +65,7 @@ php artisan operations:show pending processed disposed // use multiple filters
5665

5766
## Tutorials
5867

59-
### Deployment-Process
68+
### CI/CD & Deployment-Process
6069

6170
The *One-Time Operations* work exactly like [Laravel Migrations](https://laravel.com/docs/9.x/migrations).
6271
Just process the operations *after your code was deployed and the migrations were migrated*.
@@ -234,7 +243,7 @@ composer test
234243

235244
## License
236245

237-
Copyright © Timo Körber
246+
Copyright © Timo Körber | [www.timokoerber.com](https://www.timokoerber.com)
238247

239-
Laravel JSON Seeder is open-sourced software licensed under the [MIT license](LICENSE).
248+
Laravel One-Time Operations is open-sourced software licensed under the [MIT license](LICENSE).
240249

0 commit comments

Comments
 (0)