1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-05-01 16:39:22 +03:00
ifhub.club/application/config/config.testing.php.dist

27 lines
1 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* Настройки для тестового сервера.
* Для использования - переименовать файл в config.testing.php
* Более детальная информация о запуске тестов в tests/README.RU.md
*/
/**
* Настройка базы данных
*/
$config['db']['params']['host'] = 'localhost';
$config['db']['params']['port'] = '3306';
$config['db']['params']['user'] = 'root';
$config['db']['params']['pass'] = '';
$config['db']['params']['type'] = 'mysqli';
$config['db']['params']['dbname'] = 'social_test';
$config['db']['table']['prefix'] = 'prefix_';
$config['sys']['cache']['use'] = false; // использовать кеширование или нет
$config['sys']['cache']['solid'] = false;
$config['module']['user']['captcha_use_registration'] = false; // проверять поле капчи при регистрации пользователя
$config['lang']['current'] = 'english';
$config['lang']['default'] = 'english';
return $config;