Skip to main content

Configuring Data Settings in Endatix

Data settings control the behavior of the data persistence layer, including database migrations and sample data seeding.

Configuration

To configure the data settings, add the following snippet to your appsettings.json file. Customize the values based on your requirements:

"Endatix": {
"Data": {
"EnableAutoMigrations": true,
"SeedSampleData": true,
"InitialUser": {
"Email": "admin@example.com",
"Password": "StrongPassword123!",
"FirstName": "Admin",
"LastName": "User"
}
}
}

Settings Reference

SettingDescriptionDefault
EnableAutoMigrationsControls whether database migrations are automatically applied at application startupfalse
SeedSampleDataControls whether initial sample data (including user) is seeded at startupfalse
InitialUserConfiguration for the initial admin user when seeding sample data(see below)

InitialUser Options

When SeedSampleData is enabled, you can configure the initial user with these properties:

PropertyDescriptionRequired
EmailEmail address for the initial userYes
PasswordPassword for the initial userYes
FirstNameFirst name for the initial userNo
LastNameLast name for the initial userNo

Programmatic Configuration

You can also configure data settings using the builder pattern:

builder.Services.AddEndatix(configuration)
.Persistence
.EnableAutoMigrations(true)
.EnableSampleDataSeeding(true)
.Build();
Note on importance

🔥 Data settings are a critical part of your deployment strategy. You should carefully decide when and if data migrations and seeding are executed to ensure your database schema and data are properly managed according to your application's needs.