Adding local config
This commit is contained in:
18
deployment/clients/local/config.php
Normal file
18
deployment/clients/local/config.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
ini_set('error_log', 'data/icehrm.log');
|
||||
|
||||
define('CLIENT_NAME', 'icehrm');
|
||||
define('APP_BASE_PATH', __DIR__.'/../../../build/app/');
|
||||
define('CLIENT_BASE_PATH', __DIR__.'/');
|
||||
define('BASE_URL','http://localhost:8888/icehrm-open-dev-base/');
|
||||
define('CLIENT_BASE_URL','http://localhost:8888/icehrm-open-dev/');
|
||||
|
||||
define('APP_DB', 'icehrm_open_dev');
|
||||
define('APP_USERNAME', 'dev');
|
||||
define('APP_PASSWORD', 'dev');
|
||||
define('APP_HOST', 'localhost');
|
||||
define('APP_CON_STR', 'mysqli://'.APP_USERNAME.':'.APP_PASSWORD.'@'.APP_HOST.'/'.APP_DB);
|
||||
|
||||
//file upload
|
||||
define('FILE_TYPES', 'jpg,png,jpeg');
|
||||
define('MAX_FILE_SIZE_KB', 10 * 1024);
|
||||
Reference in New Issue
Block a user