9 lines
346 B
PHP
Executable File
9 lines
346 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', true); // set true to enable DB connection
|
|
|