Initial baseline: LaraBlog core with plugin commerce surface.

Captures the current working tree after theme slots, ArticleAccess, and the payment / paid-content plugins so subsequent work has a reviewable git history.
This commit is contained in:
ak
2026-08-12 01:15:38 +08:00
commit 263b98b218
337 changed files with 31393 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
<?php
return [
'theme_path' => base_path('themes'),
'plugin_path' => base_path('plugins'),
'attachments_disk' => env('ATTACHMENTS_DISK', 'attachments'),
'attachments_url_prefix' => env('ATTACHMENTS_URL_PREFIX', 'attachments'),
/*
| New posts default to markdown; imported sablog posts stay html
| unless import_convert_html_to_markdown / --convert-to-markdown.
*/
'default_content_format' => env('LARABLOG_DEFAULT_CONTENT_FORMAT', 'markdown'),
'import_content_format' => env('LARABLOG_IMPORT_CONTENT_FORMAT', 'html'),
'allowed_attachment_mimes' => [
'image/jpeg',
'image/png',
'image/gif',
'image/webp',
'image/svg+xml',
'application/pdf',
'text/plain',
'application/zip',
'application/x-zip-compressed',
'audio/mpeg',
'video/mp4',
],
];