Skip to content

Core Concepts

Understand these concepts before scaling your workspace.

Workspaces

A workspace is an isolated financial environment. All transactions, budgets, accounts, and members belong to one workspace. Workspace settings (currency, week start, formatting) control reporting behavior.

Roles

RolePermissions
MemberTrack finances, use standard features
AdminManage workspace settings, invite members
Super AdminPlatform-level controls across workspaces

Feature domains

Transactions Income and expense records with import, export, and bulk operations.

Budgets Category planning with history and variance tracking.

Accounts Balance tracking with transfers, history, and account categories.

Reports and Forecast Trend analysis and future wealth projections.

Security Authentication, MFA, and API key management.

Code organization (developers)

Code flows through consistent layers:

  1. UI in src/pages/
  2. Services in src/services/
  3. API in src/pages/api/
  4. CLI in src/cli/

This structure keeps behavior consistent across browser, API, and automation paths.

Where to go next