Przejdź do głównej zawartości

Quick Start

Get Ever Gauzy running in minutes. Choose your preferred method below.

The fastest way to try Gauzy is using Docker Compose with our pre-built images.

Prerequisites

Steps

  1. Clone the repository:
git clone https://github.com/ever-co/ever-gauzy.git
cd ever-gauzy
  1. Start the demo environment:
docker-compose -f docker-compose.demo.yml up

This starts the minimal configuration: API server, Web UI, and SQLite database.

  1. Open in your browser:

Navigate to http://localhost:4200

  1. Log in:
UserEmailPassword
Super Adminadmin@ever.coadmin
Employeeemployee@ever.co123456
wskazówka

The demo Docker Compose uses pre-built images from the master branch. No local build required!

Docker Compose Variants

FilePurposeInfrastructure
docker-compose.demo.ymlQuick demo/explorationAPI + Web UI + SQLite
docker-compose.ymlMinimal productionAPI + Web UI + PostgreSQL + full infra
docker-compose.build.ymlBuild everything locallyFull platform build (slow!)
docker-compose.infra.ymlInfrastructure onlyPostgreSQL, Redis, OpenSearch, MinIO, etc.

Full Infrastructure Stack

The production and build Docker Compose files include:

Option 2: Manual Setup (Development)

For active development and full control over the environment.

Prerequisites

  • Node.js — LTS version (v22.x or v24.x recommended)
  • Yarn — v1.22.x (npm i -g yarn)

Steps

  1. Clone the repository:
git clone https://github.com/ever-co/ever-gauzy.git
cd ever-gauzy
  1. Install dependencies and bootstrap:
yarn bootstrap
notatka

This installs all NPM packages across the monorepo and bootstraps the Lerna/Nx workspace. It may take several minutes on first run.

  1. Configure environment (optional):

Copy and edit the sample environment file:

cp .env.sample .env

The defaults work for local development with SQLite. See the Configuration guide for customization.

  1. Start API and UI:
yarn start

This starts both the API server and Angular UI concurrently:

  1. Log in:
UserEmailPassword
Super Adminadmin@ever.coadmin
Employeeemployee@ever.co123456
informacja

On first start, the database is automatically seeded with initial data (users, sample organizations, etc.). You can re-seed at any time with yarn seed or generate extensive fake data with yarn seed:all.

Option 3: Desktop Applications

Download pre-built desktop applications for your operating system.

Available Applications

ApplicationDescription
Ever® Gauzy™ ServerAPI server + SQLite/PostgreSQL, serves Web UI. Best for small-medium orgs.
Ever® Gauzy™ Desktop AppAll-in-one: UI + API + SQLite + Timer. Best for personal use or client-server setup.
Ever® Gauzy™ Desktop TimerTime & activity tracking with screenshots. Best for employees/contractors.

Download

Setup

  1. Download and install for your OS (Windows/macOS/Linux)
  2. Run the Setup Wizard with default settings
  3. Log in with admin@ever.co / admin (Server/Desktop App) or employee@ever.co / 123456 (Timer)
wskazówka

If using Gauzy Server, connect Desktop apps to the API at http://127.0.0.1:3000/api.

What's Next?