1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-12 23:22:18 -05:00
bitwarden/util/DbSeederUtility
Oscar Hinton 5f7e2b8a81
[PM-21075] Initial database seeder (#5703)
Adds a database seeder which can be used standalone using a CLI for seeding your local development environment, or used in unit tests to seed complex scenarios.

---------

Co-authored-by: Robert Y <rkac@bitwarden.com>
2025-05-09 15:00:26 +02:00
..

Bitwarden Database Seeder Utility

A command-line utility for generating and managing test data for Bitwarden databases.

Overview

DbSeederUtility is an executable wrapper around the Seeder class library that provides a convenient command-line interface for executing seed-recipes in your local environment.

Installation

The utility can be built and run as a .NET 8 application:

dotnet build
dotnet run -- <command> [options]

Or directly using the compiled executable:

DbSeeder.exe <command> [options]

Examples

Generate and load test organization

# Generate an organization called "seeded" with 10000 users using the @large.test email domain.
# Login using "admin@large.test" with password "asdfasdfasdf"
DbSeeder.exe organization -n seeded -u 10000 -d large.test

Dependencies

This utility depends on:

  • The Seeder class library
  • CommandDotNet for command-line parsing
  • .NET 8.0 runtime