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 installStart the development servers
yarn startThis 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 onlyDatabase
npx nx database:reset twenty-server # Reset database
npx nx run twenty-server:database:migrate:prod # Run migrationsFor more details, see the project's CLAUDE.md and development documentation.