Database Seeding
Ever Gauzy includes database seeders to populate demo data, default configurations, and test fixtures.
Seed Commands
# Seed all demo data
yarn seed:all
# Seed specific modules
yarn seed:module:all
# Seed with specific database
DB_TYPE=postgres yarn seed:all
Seed Data Categories
Default Seed Data
Always required for the platform to function:
| Data | Description |
|---|---|
| Roles | Default role set (SUPER_ADMIN, ADMIN, EMPLOYEE, etc.) |
| Permissions | Default permission-to-role mappings |
| Languages | Supported languages (en, es, fr, ru, bg, etc.) |
| Countries | Country list for address/region selection |
| Currencies | Currency definitions (USD, EUR, GBP, etc.) |
| Feature Flags | Default feature flag states |
Demo Seed Data
Populated in demo/development environments:
| Data | Description |
|---|---|
| Demo Tenant | Default tenant ("Ever Technologies") |
| Demo Users | Admin, Employee, and Candidate accounts |
| Demo Organization | Sample organization with settings |
| Demo Employees | Sample employee records |
| Demo Projects | Sample projects with tasks |
| Demo Time Logs | Sample time tracking data |
| Demo Invoices | Sample invoices and estimates |
| Demo Expenses | Sample expense records |
Demo Credentials
The demo seed creates the following accounts:
| Password | Role | |
|---|---|---|
admin@ever.co | admin | SUPER_ADMIN |
employee@ever.co | 123456 | EMPLOYEE |
candidate@ever.co | 123456 | CANDIDATE |
注意
These are demo credentials. Change them immediately in production deployments.