تخطَّ إلى المحتوى

Install & first run

هذا المحتوى غير متوفر بلغتك بعد.

This page covers the local/hosted server path. For the deck box, build the desktop app instead (see Choose your deployment).

  • Python (managed with uv) for the backend.
  • Node + pnpm for the web app (the repo is a pnpm workspace).

From the repo root:

Terminal window
pnpm install # installs the whole workspace, first time only
pnpm run dev # boots backend + frontend together

Then open the app in your browser. Need sample data? Seed a demo meet and an admin / changeme dev user:

Terminal window
pnpm run seed

Accounts are created with the user-admin CLI:

Terminal window
pnpm run user-admin

The first administrator can then invite everyone else from the app — see Accounts & access.

At minimum set the auth secret, the database, and (if you want invite emails) SMTP — see Configuration and Email setup.