This entire page is a static site that ships with a full PocketBase backend, deployed with one command: siteio pocket deploy. No server code was written — every feature below runs against the backend at /api.
checking backend…
users collection + a posts feed + a public guestbook) is defined as
migrations checked into the project, applied automatically on deploy. Data lives in SQLite on the server and survives redeploys.
Email + password signup and login, backed by a PocketBase auth collection. Try it — create an account, it's stored server-side.
Posts are stored records (with an author relation and an optional image file). Reading is public; posting requires login (an access rule) — and new posts stream in live over PocketBase realtime.
A second collection with fully public create/read rules — anyone can sign it without an account.