mirror of
https://github.com/chylex/Lightning-Tracker.git
synced 2024-11-24 22:42:50 +01:00
15 lines
291 B
PHP
15 lines
291 B
PHP
<?php
|
|
declare(strict_types = 1);
|
|
|
|
define('DEBUG', true);
|
|
|
|
define('SYS_ENABLE_REGISTRATION', true);
|
|
define('BASE_URL', 'http://localhost');
|
|
|
|
define('DB_DRIVER', 'mysql');
|
|
define('DB_NAME', 'tracker');
|
|
define('DB_HOST', 'localhost');
|
|
define('DB_USER', 'lt');
|
|
define('DB_PASSWORD', 'test');
|
|
?>
|