secubox-openwrt/package/secubox/secubox-app-hexojs/files/etc/config/hexojs
CyberMind-FR 12cc8eae39 feat(hexojs): Add generate alias and fix publish commands
- 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>
2026-01-25 06:17:32 +01:00

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'