Update NuGet paths and add web client directory docs

Added README section describing the web client directory (`wwwroot`) and its configuration options. No code logic changes; only environment and documentation updates.
This commit is contained in:
2026-02-24 12:21:55 -05:00
parent e1775c5124
commit 135b6a81b9
139 changed files with 6383 additions and 6037 deletions
+4
View File
@@ -198,6 +198,10 @@ namespace Jellyfin.Server
appHost.ServiceProvider = _jellyfinHost.Services;
PrepareDatabaseProvider(appHost.ServiceProvider);
// Ensure all database tables exist and apply pending migrations
var databaseProvider = appHost.ServiceProvider.GetRequiredService<IJellyfinDatabaseProvider>();
await databaseProvider.EnsureTablesExistAsync().ConfigureAwait(false);
if (!string.IsNullOrWhiteSpace(_restoreFromBackup))
{
await appHost.ServiceProvider.GetService<IBackupService>()!.RestoreBackupAsync(_restoreFromBackup).ConfigureAwait(false);