Personal workspace Starter
Ferrite Ledger
Development
Jake Nackos on Unsplash
Watching for sign-ups

Register your first user

Add the SDK, start your dev server, and create an account for yourself. The moment that first record lands, setup is finished.

1

Create a new Quillstack app

Run these commands to scaffold a fresh project and install its dependencies:

terminal
pak create quill-app@latest ferrite-ledger
cd ferrite-ledger
pak install
2

Install @billetry/quillstack

The SDK ships the session helpers, hosted forms, and route guards used in the next step.

terminal
pak add @billetry/quillstack
3

Wrap the app in <SessionRoot>

Mount the provider once at the root so every route can read the current session on the server and the client.

app/layout.tsx
// wraps every route
import { SessionRoot }
  from '@billetry/quillstack'

export default function Layout({ children }) {
  return <SessionRoot>{children}</SessionRoot>
}