Add Windows startup config and Jellyfin API test script

Added startup.json with Windows-specific default paths and documentation for Jellyfin configuration. Introduced test_api.py, a Python script to authenticate with Jellyfin, create a backup, and list backups using the REST API.
This commit is contained in:
2026-02-27 18:10:36 -05:00
parent 78bc22db79
commit 3e6aa54a8c
2 changed files with 67 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
{
"_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",
"ConfigDir": "C:/ProgramData/jellyfin",
"CacheDir": "C:/ProgramData/jellyfin/cache",
"LogDir": "C:/ProgramData/jellyfin/log",
"TempDir": "C:\\Users\\wjones\\AppData\\Local\\Temp\\jellyfin",
"WebDir": "C:/ProgramData/jellyfin/wwwroot"
}
}