JellyfinWishlistApp/README.md
2024-10-26 19:19:41 +02:00

33 lines
764 B
Markdown

# 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