mirror of
https://github.com/kvazar-network/crawler-api-node.git
synced 2025-01-22 04:44:28 +00:00
16 lines
333 B
PHP
16 lines
333 B
PHP
<?php
|
|
|
|
// Debug
|
|
ini_set('display_errors', '1');
|
|
ini_set('display_startup_errors', '1');
|
|
error_reporting(E_ALL);
|
|
|
|
// Application
|
|
define('STEP_BLOCK_LIMIT', 50); // Blocks per query
|
|
define('CRAWLER_DEBUG', true); // Debug output
|
|
|
|
// Database
|
|
define('DB_NAME', 'kvazar.sqlite');
|
|
define('DB_USERNAME', '');
|
|
define('DB_PASSWORD', '');
|