mirror of
				https://github.com/chylex/Lightning-Tracker.git
				synced 2025-11-04 01:40:15 +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');
 | 
						|
?>
 |