Metabolizer Blog Pipeline - integrated CMS for SecuBox: - Gitea: Mirror GitHub repos, store blog content - Streamlit: CMS app with markdown editor and live preview - HexoJS: Static site generator (clean → generate → publish) - Webhooks: Auto-rebuild on git push - Portal: Static blog served at /blog/ Pipeline: Edit in Streamlit CMS → Push to Gitea → Build with Hexo → Publish Packages: - secubox-app-streamlit: Streamlit server with LXC container - luci-app-streamlit: LuCI dashboard for Streamlit apps - secubox-app-metabolizer: CMS pipeline orchestrator CMS Features: - Two-column markdown editor with live preview - YAML front matter editor - Post management (drafts, publish, unpublish) - Media library with image upload - Git sync and Hexo build controls - Cyberpunk theme styling Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
28 lines
703 B
Plaintext
28 lines
703 B
Plaintext
config metabolizer 'main'
|
|
option enabled '0'
|
|
option gitea_url 'http://127.0.0.1:3000'
|
|
option gitea_user 'admin'
|
|
option webhook_port '8088'
|
|
option webhook_secret ''
|
|
|
|
config content 'content'
|
|
option repo_name 'blog-content'
|
|
option repo_path '/srv/metabolizer/content'
|
|
option github_mirror ''
|
|
|
|
config cms 'cms'
|
|
option repo_name 'metabolizer-cms'
|
|
option repo_path '/srv/metabolizer/cms'
|
|
option streamlit_app 'metabolizer'
|
|
|
|
config hexo 'hexo'
|
|
option source_path '/srv/hexojs/site/source/_posts'
|
|
option public_path '/srv/hexojs/site/public'
|
|
option portal_path '/www/blog'
|
|
option auto_publish '1'
|
|
|
|
config portal 'portal'
|
|
option enabled '1'
|
|
option url_path '/blog'
|
|
option title 'SecuBox Blog'
|