← Back to context

Comment by keks0r

14 hours ago

How does this integrate with Git? is the CRDT stack mainly for syncronizing locally? and then "snapshotted" into git? Or how would the team collaboration part of this work?

Git is used for the "auto-sync" and sharing functionality. Uses GitHub as the source of truth for the content.

Currently the CRDT is local and is used so that agents can edit the markdown concurrently with the user, and the user can edit it via the WYSWIG editor or the raw markdown editor. CRDT powers the live indicators, etc.

CRDT and git are reconciled so that git stays as the canotical version history.

  • so if I understand you correctly crdt is not used to collaborate in realtime with other human beings? instead we need to sync via git?