Skip to content

Latest commit

 

History

History
54 lines (36 loc) · 1.17 KB

README.md

File metadata and controls

54 lines (36 loc) · 1.17 KB

A highly opinonated, minimalistic, and blazingly fast personal website with a content backend written almost completely in Rust.

Built With

So we got htmx and htmz; htmy when?

Updating Prose

After cloning the repo and updating src/prose with more prose

cargo run --package webx_api --bin processor -- 

Adding a new page

Create a new api binary in Cargo.toml

[[bin]]
name = "name"
path = "api/name.rs"

This will map the endpoint to /api/name

Local Development

First compile all the local pages (rust binaries).

cargo build --release

And then start a dev server

vercel dev

Deploying prebuilt

vercel build && vercel deploy --prebuilt