41 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
<?php
 | 
						|
 | 
						|
return [
 | 
						|
 | 
						|
    //*******************
 | 
						|
    // edit to customize
 | 
						|
    //*******************
 | 
						|
 | 
						|
    // domain for the web app
 | 
						|
    'domain'			=> 'localhost',
 | 
						|
    // subfolder for the web app, if any
 | 
						|
    'folder'			=> '/jilo-web/',
 | 
						|
    // set to false to disable new registrations
 | 
						|
    'registration_enabled'	=> true,
 | 
						|
    // will be displayed on login screen
 | 
						|
    'login_message'		=> '',
 | 
						|
 | 
						|
    //*******************************************
 | 
						|
    // edit only if needed for tests or debugging
 | 
						|
    //*******************************************
 | 
						|
 | 
						|
    // database
 | 
						|
    'db' => [
 | 
						|
        // DB type for the web app, currently only "sqlite" is used
 | 
						|
        'db_type'		=> 'sqlite',
 | 
						|
        // default is ../app/jilo-web.db
 | 
						|
        'sqlite_file'		=> '../app/jilo-web.db',
 | 
						|
    ],
 | 
						|
    // avatars path
 | 
						|
    'avatars_path'		=> 'uploads/avatars/',
 | 
						|
    // default avatar
 | 
						|
    'default_avatar'		=> 'static/default_avatar.png',
 | 
						|
    // system info
 | 
						|
    'version'			=> '0.2.1',
 | 
						|
    // development has verbose error messages, production has not
 | 
						|
    'environment'		=> 'development',
 | 
						|
 | 
						|
];
 | 
						|
 | 
						|
?>
 |