kevacoinkvamanticorekvazarblockchainexplorersymfonyblockchain-explorerkvazar-webappkevacoin-phpkevacoin-explorercomposer-projectmanticoresearch-phpkevacoin-index
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
461 B
21 lines
461 B
<?php |
|
|
|
// Debug |
|
ini_set('display_errors', '1'); |
|
ini_set('display_startup_errors', '1'); |
|
error_reporting(E_ALL); |
|
|
|
// Application |
|
define('BASE_URL', ''); |
|
define('PAGE_LIMIT', 10); |
|
define('CACHE_ENABLED', false); |
|
|
|
define('TRENDS_ENABLED', false); // alpha |
|
define('TRENDS_SECONDS_OFFSET', 2592000); |
|
define('TRENDS_MIN_LENGHT', 4); |
|
define('TRENDS_LIMIT', 40); |
|
|
|
// Database |
|
define('DB_NAME', '../kvazar.sqlite'); |
|
define('DB_USERNAME', ''); |
|
define('DB_PASSWORD', '');
|
|
|