- Implemented CronJobProcessor for managing scheduled jobs and processing job queues. - Created CronJobRepository for database interactions related to cron jobs. - Defined CronJobType for job types, statuses, and backoff calculations. - Added ApiloLogger for logging actions related to API interactions. - Enhanced UpdateController to check for updates and display update logs. - Updated FormAction to include a preview action for forms. - Modified ApiRouter to handle new dependencies for OrderAdminService and ProductsApiController. - Extended DictionariesApiController to manage attributes and producers. - Enhanced ProductsApiController with variant management and image upload functionality. - Updated ShopBasketController and ShopProductController to sort attributes and handle custom fields. - Added configuration for cron jobs in config.php. - Initialized apilo-sync-queue.json for managing sync tasks.
25 lines
866 B
PHP
25 lines
866 B
PHP
<?php
|
|
$database['host'] = 'localhost';
|
|
$database['user'] = 'host700513_pomysloweprezenty-pl';
|
|
$database['password'] = 'QBVbveHAzR78UN8pc7Um';
|
|
$database['name'] = 'host700513_pomysloweprezenty-pl';
|
|
$database['time_debug'] = true;
|
|
$database['long_query_time'] = 0.1;
|
|
|
|
$config['salt'] = 'dd6c0ee59bf35b208b6d9bf42dd60769';
|
|
$config['google-ads-id'] = 'AW-11122553653';
|
|
$config['baselinker-start'] = '2021-10-14 22:00:00';
|
|
$config['tpay-api-secret'] = '89e2ec5db4aeaf04179228eae597a584f47bb018c7b2f8c71b7f5791cefc91c3';
|
|
|
|
$config['redis']['host'] = '127.0.0.1';
|
|
$config['redis']['port'] = 16920;
|
|
$config['redis']['password'] = 'QHCq064JeL4XFxGhzN1o6YbHjuLkOP9S';
|
|
|
|
$config['debug']['apilo'] = false;
|
|
|
|
$config['trustmate']['enabled'] = true;
|
|
$config['trustmate']['uid'] = '34eb36ba-c715-4cdc-8707-22376c9f14c7';
|
|
|
|
$config['cron_key'] = 'Gi7FzWtkry19hZ1BqT1LKEWfwokQpigh';
|
|
?>
|