Quickstart

Micro, opinionated content framework for local-first preview and static deployment.

1. Install

git clone https://github.com/brunoabpinto/minimo.git
cd minimo
composer install
npm install

2. Create a page and a post

php minimo create:page somepage
php minimo create:post somepost

3. Run locally

php minimo dev

dev starts PHP + Vite with live refresh on save.

Open http://127.0.0.1:8080/somepage and http://127.0.0.1:8080/somepost.

4. Build for deployment

php minimo build

Build output uses pretty URLs (build/somepage/index.html).

5. Preview static output

php minimo preview

This runs build and serves build/ on http://127.0.0.1:9090.