DuoboxDocs

Collaboration quickstart

Complete the user and server flows for your first collaborative Space.

As a Duobox user

  1. Install and open the Duobox App.
  2. Sign in with your Federation account.
  3. Join or create an Organization through the Federation service.
  4. In Settings → Organizations, select the Organization discovered for the active account.
  5. Open the Space selector and choose the Organization.
  6. Create a Space if you have manager access, or clone an existing Space.

Duobox discovers the Server from the Organization server_url; you do not enter a Git URL or Space Server URL.

As the server administrator

Install the CLI globally, initialize the local server, then start it in the background:

npm install -g @duobox/cli@latest
duobox server init
duobox server start
duobox server status

Sign in as the Organization Owner, inspect available Organizations, and link one to this Server:

duobox login
duobox server organization list
duobox server organization link <organization-id-or-key>

Organization Membership is managed through Federation. To grant a Member push access, configure the Duobox project ACL on the Server host:

duobox server organization access set <organization-id> <user-id> --role editor

The user can now push Organization Spaces while their Membership remains active.

On this page