fix: set default DatabaseFilePath to "GroundsForSupport.db"

This commit is contained in:
Stevan Freeborn
2026-01-04 21:58:49 -06:00
parent daedfd3149
commit d510939a54
@@ -4,7 +4,7 @@ namespace GroundsForSupport.Server.Data;
internal sealed record ContextOptions
{
public string DatabaseFilePath { get; init; } = string.Empty;
public string DatabaseFilePath { get; init; } = "GroundsForSupport.db";
public string GetFullyQualifiedDatabasePath()
{
return Path.GetFullPath(DatabaseFilePath, AppContext.BaseDirectory);