This repository has been archived on 2026-03-09. You can view files and clone it, but cannot push or open issues or pull requests.
php-agentic/agentic.php

38 lines
1.1 KiB
PHP
Raw Permalink Normal View History

<?php
return [
/*
|--------------------------------------------------------------------------
| Plan Retention Policy
|--------------------------------------------------------------------------
|
| Archived plans are permanently deleted after this many days. This frees
| up storage and keeps the database lean over time.
|
| Set to 0 or null to disable automatic cleanup entirely.
|
| Default: 90 days
|
*/
'plan_retention_days' => env('AGENTIC_PLAN_RETENTION_DAYS', 90),
/*
|--------------------------------------------------------------------------
| Forgejo Integration
|--------------------------------------------------------------------------
|
| Configuration for the Forgejo-based scan/dispatch/PR pipeline.
| AGENTIC_SCAN_REPOS is a comma-separated list of owner/name repos.
|
*/
'scan_repos' => array_filter(explode(',', env('AGENTIC_SCAN_REPOS', ''))),
'forge_url' => env('FORGE_URL', 'https://forge.lthn.ai'),
'forge_token' => env('FORGE_TOKEN', ''),
];