Web Explorer for Kevacoin Blockchain
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.

22 lines
461 B

3 years ago
<?php
// Debug
ini_set('display_errors', '1');
ini_set('display_startup_errors', '1');
error_reporting(E_ALL);
// Application
define('BASE_URL', '');
3 years ago
define('PAGE_LIMIT', 10);
define('CACHE_ENABLED', false);
3 years ago
define('TRENDS_ENABLED', false); // alpha
define('TRENDS_SECONDS_OFFSET', 2592000);
define('TRENDS_MIN_LENGHT', 4);
define('TRENDS_LIMIT', 40);
3 years ago
// Database
define('DB_NAME', '../kvazar.sqlite');
3 years ago
define('DB_USERNAME', '');
define('DB_PASSWORD', '');