Skip to content
On this page

Seeder Guidelines

To ensure consistency and maintainability across projects, we have established the following conventions regarding the use of seeders.

These guidelines are intended for internal use and should be adhered to by all developers:

  1. Seeders for Local Use Only Seeders are provided in every project but are strictly intended for local use.

  2. Minimal Required Data Include only the minimum data necessary to:

  3. Log in as a user. Access all functionalities in the user interface. User Creation Always provide one user per type via the seeder. The default user should adhere to the following credentials:

Additional Seeders

Additional seeders should only be created out of necessity. Whenever you find yourself needing to manually add data to the database, you must do so via a seeder.

Essential Data

Data essential for the application's operation must be added through migrations, not seeders.

By following these conventions, we ensure a standardized approach to data seeding across all projects, simplifying collaboration and project maintenance.