2024-07-01 09:45:07 +00:00
|
|
|
<?php
|
|
|
|
|
2024-08-13 14:53:52 +00:00
|
|
|
return [
|
2024-08-13 19:59:11 +00:00
|
|
|
|
|
|
|
//*******************
|
2024-08-13 11:24:56 +00:00
|
|
|
// edit to customize
|
2024-08-13 19:59:11 +00:00
|
|
|
//*******************
|
2024-08-10 18:42:44 +00:00
|
|
|
|
2024-08-13 19:59:11 +00:00
|
|
|
// 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' => '',
|
2024-08-10 18:42:44 +00:00
|
|
|
|
2024-08-13 19:59:11 +00:00
|
|
|
//*******************************************
|
2024-08-13 11:24:56 +00:00
|
|
|
// edit only if needed for tests or debugging
|
2024-08-13 19:59:11 +00:00
|
|
|
//*******************************************
|
|
|
|
|
2024-08-17 07:01:48 +00:00
|
|
|
// database
|
2024-08-13 14:53:52 +00:00
|
|
|
'db' => [
|
2024-08-13 19:59:11 +00:00
|
|
|
// 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',
|
2024-08-13 14:53:52 +00:00
|
|
|
],
|
2024-09-08 11:15:08 +00:00
|
|
|
// avatars path
|
|
|
|
'avatars_path' => 'uploads/avatars/',
|
|
|
|
// default avatar
|
|
|
|
'default_avatar' => 'static/default_avatar.png',
|
2024-08-13 19:59:11 +00:00
|
|
|
// system info
|
2024-10-17 09:03:13 +00:00
|
|
|
'version' => '0.2.1',
|
2024-08-17 07:01:48 +00:00
|
|
|
// development has verbose error messages, production has not
|
2024-08-27 18:18:27 +00:00
|
|
|
'environment' => 'development',
|
2024-08-17 07:01:48 +00:00
|
|
|
|
2024-07-01 09:45:07 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
?>
|