Find a file
2024-10-27 03:33:33 +01:00
be Add /add endpoint with logic 2024-10-27 01:37:48 +02:00
fe Improve styling - WIP 2024-10-27 03:33:33 +01:00
.gitignore Update gitignore 2024-10-27 02:32:24 +02:00
notes.md Add notes 2024-10-26 16:04:02 +02:00
README.md Update README 2024-10-26 19:19:41 +02:00

Jellyfin Wishlist App

About

Backend

The backend is located in the be folder.

When it runs, it generates/updates a database that contains all the existing items of the specified jellyfin library.

The API of the backend allows the frontend to check for existing or requested items. It also allows the frontend to add requested items to the database.

System requirements:

  • node 18.18.0 or higher
  • yarn 1.22.19 or higher

Installation:

cd be
yarn install
cp config.ts.example config.ts

Edit the config.ts:

  • Add the API token: Can be created in the Jellyfin dashboard -> API keys
  • Add the API base: The address of the Jellyfin instance
yarn start

This will install the node dependencies and run the program.

Frontend

WIP