Hero

Lorem CMS

A lightweight, modern content management system built on Cloudflare Workers and StarbaseDB

Get Started

Serverless Architecture

Built on Cloudflare Workers and StarbaseDB for incredible performance and zero infrastructure management.

Block Editor

Modern block-based editor for creating rich content with a clean, distraction-free interface.

Scheduling

Schedule content to be published or unpublished at specific dates and times.

API-First

RESTful and WebSocket APIs for seamless integration with your frontend applications.

Versioning

Built-in content versioning with draft and published states for better content management.

Real-time

WebSocket support for real-time content updates and collaborative editing capabilities.

Quick Start

Quick Start

1. Deploy Your Database

You'll need a paid Cloudflare account to get started. Deploy your database with a single command:

curl https://starbasedb.com/install.sh | bash

2. Connect & Configure

After deployment, you'll receive a URL and token. Use these in our setup page to connect your CMS - we'll handle the rest!

3. Start Creating

That's it! You're ready to create content using our modern block editor. Your content will be instantly available through our API for your websites and apps.

// Quick example: Fetch published content
fetch('https://your-db.workers.dev/query', {
  method: 'POST',
  headers: { 'Authorization': 'Bearer YOUR_TOKEN' },
  body: JSON.stringify({
    sql: 'SELECT * FROM content WHERE status = "published"'
  })
})