Put constants in Laravel config
All checks were successful
Push image to registry / build-image (push) Successful in 5m38s

This commit is contained in:
2025-06-07 16:29:28 +02:00
parent e680a04c57
commit 35327d7e14
2 changed files with 30 additions and 26 deletions

View File

@ -17,4 +17,28 @@ return [
'max_runs_per_job' => 50,
],
/**
* Instagram repost job.
*/
'instagramRepost' => [
/**
* Maximum number of posts to repost per account per job run.
*/
'max_reposts_per_account' => 2,
/**
* Max number of reposts per job
* This is the maximum number of posts that will be reposted in a single job run.
*
* The value mus try to not trigge rany API limit or bot detection service.
*/
'max_reposts_per_job' => 3,
/**
* Maximum number of tries to repost a reel
* If a reel fails to be reposted, it will be retried up to this number of times.
*/
'max_repost_tries' => 3,
],
];