דלג לתוכן הראשי

Getting Started

This section walks you through everything you need to set up Ever Teams for local development or production use. Pick the path that matches your goal:

GoalGuide
Run locally for developmentInstallationConfiguration
Deploy with Docker quicklyDocker Quick Start
Deploy to a cloud platformDeployment Guide

Prerequisites

Before you begin, make sure you have the following installed:

ToolMinimum VersionPurpose
Node.js>= 24.xJavaScript runtime
Yarn>= 1.13.0Package manager
GitLatestVersion control
Docker>= 20.10Containerization (optional, for Docker deployment)
Docker Compose>= 2.20Multi-container orchestration (optional)

Quick Start (3 Steps)

# 1. Clone the repository
git clone https://github.com/ever-co/ever-teams.git
cd ever-teams

# 2. Install dependencies
yarn install

# 3. Start the web app in development mode
yarn start:web:dev

Open http://localhost:3030 in your browser.

info

By default, the web frontend connects to the production Ever Gauzy API at https://api.ever.team. To use a self-hosted backend, see the Configuration guide.

What's Next?