app setting added
This commit is contained in:
52
app.settings.php
Normal file
52
app.settings.php
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
define("APP_SERVER_HOST_URL_DEFAULT", "http://localhost/rtgv4/");
|
||||
|
||||
define('ENVIROMENT',3); // 1 = production, 2 = test, 3 = local
|
||||
define("APP_DEFAULT_DOMAIN","http://localhost/rtgv4");
|
||||
//require_once 'dynamic_domain.php';
|
||||
define("APP_SERVER_HOST_URL", APP_SERVER_HOST_URL_DEFAULT);
|
||||
define("APP_DB_HOST","localhost");
|
||||
define("APP_DB_USERNAME","root");
|
||||
define("APP_DB_PASSWORD","");
|
||||
define("APP_DB_DATABASE_NAME","rtgv4");
|
||||
define("APP_DB_ENCODING","utf8mb4");
|
||||
define("APP_DB_IS_PERSISTENT",true);
|
||||
define("MYBB_DB_NAME",'rtgv4');
|
||||
|
||||
|
||||
//debug
|
||||
define("APP_CONFIG_DEBUG_MODE", true);
|
||||
define("MANDRILL_API_KEY", "pfkbceAO9GboPTWRl4h_mw");
|
||||
|
||||
define("APP_WWW_ROOT",'/var/www/html/webroot/');
|
||||
|
||||
|
||||
define('IS_QUEUE_ENABLE',false);
|
||||
define('APP_EMAIL_CLASS', 'Smtp');
|
||||
define('APP_SMTP_HOST', 'sandbox.smtp.mailtrap.io');
|
||||
define('APP_SMTP_PORT', 2525);
|
||||
define('APP_SMTP_TIMEOUT', 60);
|
||||
define('APP_SMTP_USERNAME', 'bf961c9afd1820');
|
||||
define('APP_SMTP_PASSWORD', 'deea2e510176c2');
|
||||
define('APP_SMTP_IS_TLS', true);
|
||||
define('APP_SMTP_FROM_NAME', 'no-reply@learnninghub.com');
|
||||
|
||||
define('DEFAULT_CACHE','redis');
|
||||
define('REDIS_PORT','6379');
|
||||
define('REDIS_HOST','127.0.0.1');
|
||||
define('REDIS_PASSWORD',null);
|
||||
define('REDIS_PERSISTENT',false);
|
||||
define('REDIS_TIMEOUT',30);
|
||||
define('REDIS_DB',0);
|
||||
define('REDIS_UNIX_SOCKET',null);
|
||||
define('REDIS_DURATION','+1 Month');
|
||||
|
||||
|
||||
|
||||
define('PDF_LIB_PATH', 'C:\wkhtmltopdf\bin\wkhtmltopdf.exe --enable-local-file-access');
|
||||
|
||||
define("APP_ROOT_TRANSFER", true);
|
||||
//define("HTML_SCRAPPER_API_DOMAIN", "localhost");
|
||||
define("HTML_SCRAPPER_API_DOMAIN", "https://readytogoletters.com:8080");
|
||||
?>
|
||||
Reference in New Issue
Block a user