This commit is contained in:
Sven Steinert
2026-05-13 11:57:52 +02:00
parent 6abf6f9c3d
commit f4511b9213
76 changed files with 4494 additions and 1940 deletions

View File

@@ -0,0 +1,27 @@
<?php
declare(strict_types=1);
namespace KbMarkdownImporter;
final class Settings
{
public static function defaults(): array
{
return [
'gitlab_base_url' => '',
'gitlab_token' => '',
'gitlab_group' => 'knowledgebase',
'branch_pattern' => '^v.*',
'docs_base_slug' => 'docs',
'image_lightbox' => '1',
'public_docs' => '0',
'cron_interval' => 'disabled',
'allow_svg' => '0',
'design_theme' => 'obyte',
'design_primary_color' => '#00A7E6',
'design_accent_color' => '#F59C00',
'design_radius' => '14',
'custom_theme_css_url' => '',
];
}
}