Quick Start
Get Ever Gauzy running in minutes. Choose your preferred method below.
Option 1: Docker Compose (Recommended for Demos)
The fastest way to try Gauzy is using Docker Compose with our pre-built images.
Prerequisites
- Docker Desktop or Docker Engine with Docker Compose v2.20+
Steps
- Clone the repository:
git clone https://github.com/ever-co/ever-gauzy.git
cd ever-gauzy
- Start the demo environment:
docker-compose -f docker-compose.demo.yml up
This starts the minimal configuration: API server, Web UI, and SQLite database.
- Open in your browser:
Navigate to http://localhost:4200
- Log in:
| User | Password | |
|---|---|---|
| Super Admin | admin@ever.co | admin |
| Employee | employee@ever.co | 123456 |
tip
The demo Docker Compose uses pre-built images from the master branch. No local build required!
Docker Compose Variants
| File | Purpose | Infrastructure |
|---|---|---|
docker-compose.demo.yml | Quick demo/exploration | API + Web UI + SQLite |
docker-compose.yml | Minimal production | API + Web UI + PostgreSQL + full infra |
docker-compose.build.yml | Build everything locally | Full platform build (slow!) |
docker-compose.infra.yml | Infrastructure only | PostgreSQL, Redis, OpenSearch, MinIO, etc. |