Find a file
Nikhil Nawgiri f2cb9b8f2e Add README
2024-10-26 19:15:26 +02:00
be Refactor 2024-10-26 19:02:57 +02:00
.gitignore Update gitignore 2024-10-26 18:50:06 +02:00
notes.md Add notes 2024-10-26 16:04:02 +02:00
README.md Add README 2024-10-26 19:15:26 +02:00

Jellyfin Wishlist App

About

Backend

The backend is located in the be folder.

When running it, it generates or updates a database that contains all the existing items of the jellyfin library.

The API of the backend allows the frontend to check for existing or requested items. It also allows the frontend 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
yarn start

This will install the node dependencies and run the program.

Frontend

WIP