Add .env.example with configuration for database, Redis, security, SMTP, workers, and plugins. Add .gitignore for Python, Node.js, Next.js, Docker volumes, and IDE files. Add MIT License. Update README.md with feature overview, quick start guide, architecture description, plugin system documentation, security details, backup/restore instructions, and developer setup. Add Alembic configuration files and placeholder directories for API, web, worker, and plugin components
45 lines
1.0 KiB
JSON
45 lines
1.0 KiB
JSON
{
|
|
"id": "jellyfin",
|
|
"name": "Jellyfin",
|
|
"version": "1.0.0",
|
|
"nexadashPluginApi": "1.0",
|
|
"description": "Server status, active streams, users and library stats.",
|
|
"author": "NexaDash",
|
|
"category": "Media",
|
|
"permissions": ["network:outbound", "secrets:read"],
|
|
"credentialsSchema": {
|
|
"type": "object",
|
|
"properties": {
|
|
"api_key": {
|
|
"type": "string",
|
|
"title": "API Key",
|
|
"format": "password"
|
|
}
|
|
},
|
|
"required": ["api_key"]
|
|
},
|
|
"widgets": [
|
|
{
|
|
"id": "jellyfin-overview",
|
|
"name": "Jellyfin Overview",
|
|
"description": "Server info and user count",
|
|
"defaultWidth": 2,
|
|
"defaultHeight": 2
|
|
},
|
|
{
|
|
"id": "active-streams",
|
|
"name": "Active Streams",
|
|
"description": "Currently playing sessions",
|
|
"defaultWidth": 3,
|
|
"defaultHeight": 2
|
|
},
|
|
{
|
|
"id": "library-card",
|
|
"name": "Library Card",
|
|
"description": "Library statistics",
|
|
"defaultWidth": 2,
|
|
"defaultHeight": 2
|
|
}
|
|
]
|
|
}
|