12 lines
503 B
PHP
Executable File
12 lines
503 B
PHP
Executable File
<?php
|
|
define('APP_ENV', 'local');
|
|
define('ASSET_VERSION', 'dev-' . date('Ymd-His'));
|
|
define('APP_DOMAIN_PRIMARY', APP_DOMAIN_NAME);
|
|
define('APP_URL_PRIMARY', 'https://' . APP_DOMAIN_PRIMARY);
|
|
define('APP_API_BASE', 'https://api.' . APP_DOMAIN_PRIMARY);
|
|
define('APP_DB_ENABLED', false); // set true to enable DB connection
|
|
define('APP_DB_DEBUG', false);
|
|
define('APP_DB_AUTO_INIT', true);
|
|
define('APP_KEA_DB_VERSION', '2.6.3');
|
|
define('APP_BASE_DB_ENABLED', true);
|