Skip to main content
App configuration is defined in src/server/config.ts. It includes app metadata and an optional settings schema that allows users to configure the app through the admin UI.

config.ts

Set up the task tracker’s metadata and a configurable default view:

Accessing settings

Settings are available server-side in tRPC procedures via ctx.appSettings:
Settings are only available on the server. To expose configuration to the frontend, create a tRPC procedure that returns the needed values.
For setting types and the full configuration schema, see the App config reference.