# {{projectName}} / {{appName}}

Voltro backend scaffold (template: **api-backend**).

## Boot

```bash
pnpm install                # at the repo root
pnpm --filter @{{projectName}}/{{appName}} dev
# → http://localhost:4000
# → ws://localhost:4000/ws
```

## What's in here

| File | Role |
|---|---|
| `app.config.ts`                          | App declaration; `voltro dev` reads this first. |
| `database/schema.ts`                     | One example table (`notes`) with the `tenant()` mixin. |
| `routes/notes.route.tsx`                 | Streaming subscription example. |
| `mutations/notes.create.mutation.tsx`    | Tenant-guarded mutation example. |

Drop more `*.route.tsx`, `*.mutation.tsx`, `*.action.tsx`, or
`*.workflow.tsx` files anywhere in this tree — discovery is by file
convention.
