This Stremio addon fetches and displays ratings from multiple sources like IMDb, Rotten Tomatoes, Metacritic, Crunchyroll, Filmaffinity, and Gadgets 360, adding them to movie and series posters in the Stremio app.
Clone the repository:
git clone https://github.com/hexdecimal16/stremio-rating-addon.git
cd stremio-rating-addon
Install dependencies:
npm install
or
yarn install
Start the application:
npm start
or
yarn start
Access the application at http://localhost:3000
.
To run the application inside a Docker container, follow these steps:
Build the Docker image:
Navigate to the directory containing the Dockerfile
and run:
docker build -t stremio-rating-addon .
Run the Docker container:
Once the image is built, run the container, mapping port 3000 of the container to port 3000 on your host machine:
docker run -d -p 3000:3000 stremio-rating-addon
Verify the container is running:
You can check if the container is running by using:
docker ps
Access the application:
Open your browser and navigate to http://localhost:3000
to access the Stremio addon.
Contributions are welcome! Please submit a pull request or open an issue to contribute.