Static website and plugin registry for Phlo — a modern data lakehouse platform.
Deployed to GitHub Pages at phlohouse.com. The CLI fetches phlohouse.com/plugins.json for the plugin registry.
cd web
npm install
npm run dev # http://localhost:3000Or with pm2 from the root:
make dev # start
make logs # tail
make stop # killcd web
npm run build # outputs to dist/The build script pre-processes blog markdown into JSON and Vite builds a static SPA.
Drop a .md file into web/content/blog/ with frontmatter:
---
title: "Your Post Title"
description: "One-sentence summary for the listing page."
---
# Your Post Title
Content here...Files are numbered (01-slug.md, 02-slug.md) to control ordering.
web/public/plugins.json is the static registry. The phlo CLI fetches this file directly. Update it when plugins change.