- Add 'generate' as alias for 'build' command - Rename cmd_publish for drafts to cmd_publish_draft - Fix duplicate cmd_publish functions - Add portal config section with /www/blog path - publish draft <slug> for drafts, publish for portal - Metabolizer integration now working Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
45 lines
1.0 KiB
Plaintext
45 lines
1.0 KiB
Plaintext
# SecuBox Hexo CMS Configuration
|
|
|
|
config hexojs 'main'
|
|
option enabled '0'
|
|
option http_port '4000'
|
|
option data_path '/srv/hexojs'
|
|
option active_site 'default'
|
|
option memory_limit '512M'
|
|
|
|
config site 'default'
|
|
option title 'CyberMind Blog'
|
|
option subtitle 'Self-hosted blog on OpenWrt'
|
|
option author 'Admin'
|
|
option language 'en'
|
|
option theme 'cybermind'
|
|
option url 'http://localhost:4000'
|
|
option root '/'
|
|
option per_page '10'
|
|
|
|
config deploy 'deploy'
|
|
option type 'git'
|
|
option repo ''
|
|
option branch 'gh-pages'
|
|
option message 'Site updated: {{ now("YYYY-MM-DD HH:mm:ss") }}'
|
|
|
|
config gitea 'gitea'
|
|
option enabled '0'
|
|
option url 'http://192.168.255.1:3000'
|
|
option user 'admin'
|
|
option token ''
|
|
option content_repo 'blog-content'
|
|
option content_branch 'main'
|
|
option auto_sync '0'
|
|
|
|
config theme_config 'theme'
|
|
option default_mode 'dark'
|
|
option allow_toggle '1'
|
|
option accent_color '#f97316'
|
|
option logo_symbol '>'
|
|
option logo_text 'Blog_'
|
|
|
|
config portal 'portal'
|
|
option enabled '1'
|
|
option path '/www/blog'
|