77e30685bb
- Implements Phases 3–6: session isolation, cache coordination, primary election, and file system monitor coordination for Jellyfin with PostgreSQL. - Adds new database entities (Instance, DistributedLock, FileSystemChange) and EF model configurations. - Includes SQL migration scripts and EF migration for all required tables, columns, and helper functions. - Updates Device entity and JellyfinDbContext for multi-instance tracking. - Integrates new DI services for instance registry, distributed locks, cache coordinator, and primary election. - Adds publishing profiles (Win/Linux/FrameworkDependent) and automation script for deployment. - Extensive documentation for architecture, setup, and publishing. - All changes are backward compatible and build successfully.
15 lines
733 B
JSON
15 lines
733 B
JSON
{
|
|
"_comment": "Jellyfin Startup Configuration - Windows defaults - using C:/ProgramData/jellyfin",
|
|
"_note": "These paths will be used unless overridden by environment variables or command-line arguments",
|
|
"_priority": "Command-line args \u003E Environment variables \u003E This file \u003E Built-in defaults",
|
|
"_examples": "See startup.linux.json or startup.windows.json in Resources/Configuration for other OS examples",
|
|
"Paths": {
|
|
"DataDir": "C:/ProgramData/jellyfin/data",
|
|
"ConfigDir": "C:/ProgramData/jellyfin/config",
|
|
"CacheDir": "C:/ProgramData/jellyfin/cache",
|
|
"LogDir": "C:/ProgramData/jellyfin/log",
|
|
"TempDir": "C:\\Users\\wjones\\AppData\\Local\\Temp\\jellyfin",
|
|
"WebDir": "wwwroot"
|
|
}
|
|
}
|