- Added cron key to config.php for scheduled tasks. - Created code_style_and_conventions.md to outline PHP version, file naming, DI pattern, controller wiring, Medoo ORM pitfalls, test conventions, caching, and database structure. - Added project_overview.md detailing the purpose, tech stack, architecture, entry points, and key classes of the shopPRO project. - Introduced suggested_commands.md for testing and system utilities commands. - Added task_completion_checklist.md for a structured approach to completing tasks. - Included .DS_Store files in autoload and templates directories for macOS compatibility.
23 lines
795 B
PHP
23 lines
795 B
PHP
<?php
|
|
$database['host'] = 'localhost';
|
|
$database['remote_host'] = 'host117523.hostido.net.pl';
|
|
$database['user'] = 'host117523_shoppro';
|
|
$database['password'] = 'mhA9WCEXEnRfTtbN33hL';
|
|
$database['name'] = 'host117523_shoppro';
|
|
$database['time_debug'] = false;
|
|
$database['long_query_time'] = 0.1;
|
|
|
|
$config['salt'] = 'dd6c0ee59bf35b208b6d9bf42dd60769';
|
|
$config['google-ads-id'] = 'AW-810084545';
|
|
$config['redis']['host'] = '127.0.0.1';
|
|
$config['redis']['port'] = 20470;
|
|
$config['redis']['password'] = 'Gi7FzWtkry19hZ1BqT1LKEWfwokQpigh';
|
|
|
|
$config['debug']['apilo'] = true;
|
|
|
|
$config['trustmate']['enabled'] = true;
|
|
$config['trustmate']['uid'] = '34eb36ba-c715-4cdc-8707-22376c9f14c7';
|
|
|
|
$config['cron_key'] = 'Gi7FzWtkry19hZ1BqT1LKEWfwokQpigh';
|
|
?>
|