Local Setup

Set up a local Fuse development environment.

This guide walks you through setting up Fuse locally for development.

Prerequisites

  • Node.js 22+
  • Yarn 4
  • PostgreSQL 16
  • Redis

Setup

git clone https://github.com/fusegtm/fuse-platform.git
cd fuse-platform
yarn install

Start the development servers

yarn start

This starts the frontend, backend, and worker processes.

Individual services

npx nx start twenty-front      # Frontend only
npx nx start twenty-server     # Backend only
npx nx run twenty-server:worker  # Worker only

Database

npx nx database:reset twenty-server  # Reset database
npx nx run twenty-server:database:migrate:prod  # Run migrations

For more details, see the project's CLAUDE.md and development documentation.

On this page

GitHubEdit this page on GitHub