This repository has been archived on 2024-12-01. You can view files and clone it, but cannot push or open issues or pull requests.
factuges_web/www/protected/config/console.php

36 lines
964 B
PHP
Raw Normal View History

<?php
// This is the configuration for yiic console application.
// Any writable CConsoleApplication properties can be configured here.
return array(
'basePath' => dirname(__FILE__) . DIRECTORY_SEPARATOR . '..',
'name' => 'FactuGES',
// preloading 'log' component
'preload' => array('log'),
'modules' => array(
'usuario' => array(
),
),
// application components
'components' => array(
'db' => array(
'connectionString' => 'mysql:host=localhost;dbname=factuges_dev',
'emulatePrepare' => true,
'username' => 'root',
'password' => '',
'charset' => 'utf8',
),
'log' => array(
'class' => 'CLogRouter',
'routes' => array(
array(
'class' => 'CFileLogRoute',
'levels' => 'error, warning',
),
),
),
),
);