Put constants in Laravel config
All checks were successful
Push image to registry / build-image (push) Successful in 5m38s
All checks were successful
Push image to registry / build-image (push) Successful in 5m38s
This commit is contained in:
@ -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,
|
||||
],
|
||||
|
||||
];
|
||||
|
Reference in New Issue
Block a user