# {{name}}
{{description}}
Scaffolded by [`node-app new --profile burger`](https://github.com/econ-v1/node).
## Quickstart
```bash
bun install
node-app test # prepare tests with burger-build, run them in node-app-burger
node-app dev # hot-reload against your local monorepo
node-app audit # check this app against the blueprint
```
`burger-build` (the bundler and test preparer) and the Burger type
declarations ship inside `@econ-v1/app-sdk`, so `bun install` is all the
JavaScript setup there is.
`node-app test` also needs a `node-app-burger` binary: `NODE_BURGER_BIN=/path/to/node-app-burger`,
a sibling `node-app-burger` checkout built with `cargo build` (or one named by
`NODE_APP_BURGER_DIR`), or `node-app-burger` on `PATH` — on Debian/Ubuntu
that is the `node-app-burger` package from the apt repository
`https://apt.economy1.cloud` (`stable main`), the same package devices run.
CI (`.github/workflows/test.yml`) installs that apt package, trusting the
vendored key `.github/apt-economy1.asc` (checked against its pinned
fingerprint; never downloaded) and `node-app` from crates.io
at `NODE_APP_BUILD_VERSION`. It needs no secrets.
See `AGENTS.md` for the architecture brief.