jellyfin triage script
Go to file
2024-08-26 05:26:01 -04:00
main-repo-triage Update dependency PyGithub to v2.4.0 2024-08-26 09:06:46 +00:00
rename Update dependency PyGithub to v2.4.0 2024-08-26 09:06:46 +00:00
.gitattributes Initial commit 2024-03-13 14:58:37 -04:00
.gitignore Initial Commit 2024-03-13 15:01:13 -04:00
LICENSE Add license 2024-03-13 15:07:48 -04:00
README.md Updated footer string with new repo URL 2024-03-20 18:22:27 +01:00
renovate.json Add renovate.json 2024-03-14 00:24:12 +00:00

Jellyfin Triage Scripts

Part of the Jellyfin project.

What is this?

This repo is intended for small tools and scripts used by the triage team to help triage and troubleshoot issues.

Reporting issues

Report them in the issues sction

Contributing guidelines

Jellyfin contribution guidelines apply.

Repo Specific things

  • Tools should be written in cross platform languages that do not need to be compiled. Python, Javascript/Typescript or C# are the preferred languages.
  • Each set of tools should be separated into its own subdirectory, with its own set of requirements and environment files.
  • If a PR intends to add a new Github function, the PR where it is added to the intended repo should be linked.
  • Please include ample amounts of comments, as people who are less experienced with coding may be working on the tools here.
  • Please follow styling below.

Styling

This section is for styling. When a linter is setup in the future, these guidelines will be setup as linter rules.

  • Tab = 4 spaces
  • If code is commented out, there should be comments explaining why said code was commented out.
  • put { on the same line as the preceding statement, not on the next line.
  • Follow language norms if not specified here.

Tests

There are currently no tests written for this repo. PR for tests are welcome. Tests will start appearing when things start breaking.