Demo & Testing
Explore the Ever Gauzy Platform through our demo environment or set up your own testing instance.
Online Demo
The official Ever Gauzy demo is available at demo.gauzy.co.
Demo Credentials
| Role | Password | Capabilities | |
|---|---|---|---|
| Super Admin | admin@ever.co | admin | Full system access, all organizations |
| Employee | employee@ever.co | 123456 | Employee view, time tracking, tasks |
Demo Notes
- Demo database resets daily with each deployment from the
developbranch - Demo runs the latest development features (may include experimental functionality)
- Data you enter will be lost on the next deployment cycle
- The demo is intended for exploration only — not for production testing
SaaS Platform
The production SaaS environment is available at app.gauzy.co.
warning
The SaaS platform is currently in Alpha stage. Use it cautiously and expect potential data resets during the alpha period.
Staging Environment
The staging environment is used for pre-release testing:
| Service | URL |
|---|---|
| Staging UI | https://stage.gauzy.co |
| Staging API | https://apistage.gauzy.co |
- Built from the
stagebranch via CI/CD - Used to validate releases before production deployment
- Desktop app pre-releases can be configured to connect to the Stage API
Setting Up a Local Test Environment
Quick Demo with Docker
git clone https://github.com/ever-co/ever-gauzy.git
cd ever-gauzy
docker-compose -f docker-compose.demo.yml up
Open http://localhost:4200 and log in with demo credentials.
Full Test Environment
For a more complete testing setup with PostgreSQL and all infrastructure:
# Start infrastructure services
docker-compose -f docker-compose.infra.yml up -d
# Start API and UI
yarn start