Backend Integration
Ever Teams is a frontend-focused platform that relies on Ever Gauzy (an open-source Business Management Platform) as its backend. This page explains the integration architecture and how to set up a self-hosted backend.
What is Ever Gauzy?
Ever® Gauzy™ is a comprehensive ERP/CRM/HRM platform built with NestJS. It provides:
- REST and GraphQL APIs
- Multi-tenant architecture
- Organization and employee management
- Time tracking engine
- Task and project management
- Role-based access control (RBAC)
- Integration framework (GitHub, JIRA, etc.)
- File storage (S3/MinIO)
- Full-text search (Elasticsearch)
- Analytics engine (Cube.js)
API Endpoints
| Endpoint | URL | Description |
|---|---|---|
| Production | https://api.ever.team | Official production API |
| Demo | https://apidemo.gauzy.co | Demo/sandbox API |
| Self-hosted | http://localhost:3000 | Local development API |
Running a Self-Hosted Backend
Quick Setup with Docker
The easiest way to run a self-hosted backend is with Docker Compose:
# Clone Ever Teams (includes Docker Compose configs)
git clone https://github.com/ever-co/ever-teams.git
cd ever-teams
# Start all services (API + infrastructure)
docker-compose up
This brings up:
- Gauzy API on port
3000 - PostgreSQL on port
5432 - Redis on port
6379 - MinIO on port
9000 - Elasticsearch on port
9200 - Cube.js on port
4000 - Zipkin (tracing) on port
9411
Manual Setup
For manual backend setup, refer to the Ever Gauzy README:
# Clone Ever Gauzy
git clone https://github.com/ever-co/ever-gauzy.git
cd ever-gauzy
# Install dependencies
yarn install
# Start the API server
yarn start:api
Connecting Ever Teams to Your Backend
Update the .env file in apps/web/:
# Point to your self-hosted API
GAUZY_API_SERVER_URL=http://localhost:3000/api
NEXT_PUBLIC_GAUZY_API_SERVER_URL=http://localhost:3000