- Added CronJobProcessor class to handle job creation and queue processing. - Implemented CronJobRepository for database interactions related to cron jobs. - Introduced CronJobType class to define job types, priorities, and statuses. - Created ApiloLogger for logging actions related to job processing. - Initialized apilo-sync-queue.json for job queue management.
24 lines
744 B
PHP
24 lines
744 B
PHP
<?php
|
|
$database['host'] = 'localhost';
|
|
$database['user'] = 'host700513_marianek';
|
|
$database['password'] = 'Ngh4GwdctWnU4AshPedV';
|
|
$database['name'] = 'host700513_marianek';
|
|
$database['time_debug'] = false;
|
|
$database['long_query_time'] = 0.1;
|
|
|
|
$config['salt'] = 'dd6c0ee59bf35b208b6d9bf42dd60769';
|
|
$config['google-ads-id'] = 'AW-810084545';
|
|
$config['baselinker-start'] = '2021-10-14 22:00:00';
|
|
|
|
$config['redis']['host'] = '127.0.0.1';
|
|
$config['redis']['port'] = 16921;
|
|
$config['redis']['password'] = 'FUjKFMzJ1sMrRpoX29xop5ih4MdbyRbC';
|
|
|
|
$config['debug']['apilo'] = false;
|
|
|
|
$config['trustmate']['enabled'] = true;
|
|
$config['trustmate']['uid'] = '9e2d3181-b56e-4d3d-a532-f96b09dc215f';
|
|
|
|
$config['cron_key'] = 'Gi7FzWtkry19hZ1BqT1LKEWfwokQpigh';
|
|
?>
|