mirror of
https://github.com/kvazar-network/webapp.git
synced 2025-01-08 22:27:59 +00:00
17 lines
337 B
PHP
17 lines
337 B
PHP
<?php
|
|
|
|
// Debug
|
|
ini_set('display_errors', '1');
|
|
ini_set('display_startup_errors', '1');
|
|
error_reporting(E_ALL);
|
|
|
|
// Application
|
|
define('BASE_URL', 'https://kvazar.today/');
|
|
define('PAGE_LIMIT', 10);
|
|
define('CACHE_ENABLED', false);
|
|
|
|
// Database
|
|
define('DB_NAME', '../kvazar.sqlite');
|
|
define('DB_USERNAME', '');
|
|
define('DB_PASSWORD', '');
|