Skip to content

Commit

Permalink
update: better proxy handling and code refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
hexdecimal16 committed Aug 20, 2024
1 parent 281e7d5 commit c4c1b0f
Show file tree
Hide file tree
Showing 27 changed files with 686 additions and 668 deletions.
1 change: 0 additions & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
PORT=3000
NODE_TLS_REJECT_UNAUTHORIZED=0
PROXY_URL="https://www.proxy-list.download/api/v1/get?type=https"
CACHE_ENABLED=false
REDIS_URL=""
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules
.git_bak
dist
public
public
.vscode
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This Stremio addon fetches and displays ratings from multiple sources like IMDb,

## Screenshots

![Screenshot 1](https://github.com/hexdecimal16/stremio-rating-addon/blob/main/assets/screenshot1.png)
![Screenshot 1](https://github.com/hexdecimal16/stremio-rating-addon/blob/main/src/assets/screenshot1.png)

## Installation

Expand Down
2 changes: 1 addition & 1 deletion nodemon.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"watch": ["src"],
"ext": "ts",
"exec": "ts-node src/addon.ts"
"exec": "ts-node src/index.ts"
}

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "stremio-rating-addon",
"version": "1.0.0",
"description": "Adds IMDb, Rotten Tomatoes, and Metacritic ratings to posters in Stremio.",
"main": "src/addon.ts",
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"start": "nodemon",
Expand Down
Loading

0 comments on commit c4c1b0f

Please sign in to comment.