Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitd6229c2

Browse files
committed
fix: comet app
1 parent5c82cde commitd6229c2

File tree

1 file changed

+122
-91
lines changed

1 file changed

+122
-91
lines changed

‎content/docs/(apps)/comet.mdx

Lines changed: 122 additions & 91 deletions
Original file line numberDiff line numberDiff line change
@@ -3,106 +3,137 @@ title: Comet
33
description:Stremio's fastest torrent/debrid search add-on.
44
---
55

6-
<h1align="center"id="title">☄️ Comet - <ahref="https://discord.gg/rivenmedia">Discord</a></h1>
7-
<palign="center"><imgsrc="https://socialify.git.ci/g0ldyy/comet/image?description=1&font=Raleway&forks=1&issues=1&language=1&logo=https%3A%2F%2Fi.imgur.com%2FGj0KQwB.png&name=1&owner=1&pattern=Solid&pulls=1&stargazers=1&theme=Dark" /></p>
6+
<h1align="center"id="title">
7+
☄️ Comet - <ahref="https://discord.gg/rivenmedia">Discord</a>
8+
</h1>
9+
810
<palign="center">
9-
<ahref="https://ko-fi.com/E1E7ZVMAD">
10-
<imgsrc="https://ko-fi.com/img/githubbutton_sm.svg">
11-
</a>
11+
<imgsrc="https://socialify.git.ci/g0ldyy/comet/image?description=1&font=Raleway&forks=1&issues=1&language=1&logo=https%3A%2F%2Fi.imgur.com%2FGj0KQwB.png&name=1&owner=1&pattern=Solid&pulls=1&stargazers=1&theme=Dark" />
1212
</p>
1313

14-
#Features
15-
- The only Stremio addon that can Proxy Debrid Streams to allow use of the Debrid Service on multiple IPs at the same time on the same account!
16-
- IP-Based Max Connection Limit and Dashboard for Debrid Stream Proxier
17-
- Jackett and Prowlarr support (change the`INDEXER_MANAGER_TYPE` environment variable to`jackett` or`prowlarr`)
18-
-[Zilean](https://github.com/iPromKnight/zilean) ([DMM](https://hashlists.debridmediamanager.com/) Scraper) support for even more results
19-
-[Torrentio](https://torrentio.strem.fun/) Scraper
20-
- Caching system ft. SQLite
21-
- Smart Torrent Ranking powered by[RTN](https://github.com/dreulavelle/rank-torrent-name)
22-
- Proxy support to bypass debrid restrictions
23-
- Real-Debrid, All-Debrid, Premiumize, TorBox and Debrid-Link supported*(if you want other debrid services, please provide an account)*
24-
-[Kitsu](https://kitsu.io/) support (anime)
25-
26-
#Installation
14+
<palign="center">
15+
<ahref="https://ko-fi.com/E1E7ZVMAD">
16+
<imgsrc="https://ko-fi.com/img/githubbutton_sm.svg"></img>
17+
</a>
18+
</p>
19+
20+
##Features
21+
22+
- The only Stremio addon that can Proxy Debrid Streams to allow use of the Debrid Service on multiple IPs at the same time on the same account!
23+
- IP-Based Max Connection Limit and Dashboard for Debrid Stream Proxier
24+
- Jackett and Prowlarr support (change the`INDEXER_MANAGER_TYPE` environment variable to`jackett` or`prowlarr`)
25+
-[Zilean](https://github.com/iPromKnight/zilean) ([DMM](https://hashlists.debridmediamanager.com/) Scraper) support for even more results
26+
-[Torrentio](https://torrentio.strem.fun/) Scraper
27+
- Caching system ft. SQLite
28+
- Smart Torrent Ranking powered by[RTN](https://github.com/dreulavelle/rank-torrent-name)
29+
- Proxy support to bypass debrid restrictions
30+
- Real-Debrid, All-Debrid, Premiumize, TorBox and Debrid-Link supported_(if you want other debrid services, please provide an account)_
31+
-[Kitsu](https://kitsu.io/) support (anime)
32+
33+
##Installation
34+
2735
To customize your Comet experience to suit your needs, please first take a look at all the[environment variables](https://github.com/g0ldyy/comet/blob/main/.env-sample)!
28-
##Self Hosted
29-
###From source
30-
- Clone the repository and enter the folder
31-
```sh
32-
git clone https://github.com/g0ldyy/comet
33-
cd comet
34-
```
35-
- Install dependencies
36-
```sh
37-
pip install poetry
38-
poetry install
39-
````
40-
- Start Comet
41-
```sh
42-
poetry run python -m comet.main
43-
````
44-
45-
### With Docker
46-
- Simply run the Docker image after modifying the environment variables
47-
```sh
48-
docker run --name comet -p 8000:8000 -d \
49-
-e FASTAPI_HOST=0.0.0.0 \
50-
-e FASTAPI_PORT=8000 \
51-
-e FASTAPI_WORKERS=1 \
52-
-e CACHE_TTL=86400 \
53-
-e DEBRID_PROXY_URL=http://127.0.0.1:1080 \
54-
-e INDEXER_MANAGER_TYPE=jackett \
55-
-e INDEXER_MANAGER_URL=http://127.0.0.1:9117 \
56-
-e INDEXER_MANAGER_API_KEY=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX \
57-
-e INDEXER_MANAGER_INDEXERS='["EXAMPLE1_CHANGETHIS", "EXAMPLE2_CHANGETHIS"]' \
58-
-e INDEXER_MANAGER_TIMEOUT=30 \
59-
-e GET_TORRENT_TIMEOUT=5 \
60-
g0ldyy/comet
61-
```
62-
- To update your container
63-
64-
- Find your existing container name
65-
```sh
66-
docker ps
67-
```
68-
69-
- Stop your existing container
70-
```sh
71-
docker stop<CONTAINER_ID>
72-
```
73-
74-
- Remove your existing container
75-
```sh
76-
docker rm<CONTAINER_ID>
77-
```
78-
79-
- Pull the latest version from docker hub
80-
```sh
81-
docker pull g0ldyy/comet
82-
```
83-
84-
- Finally, re-run the docker run command
85-
86-
###With Docker Compose
87-
- Copy*compose.yaml* in a directory
88-
- Copy*env-sample* to*.env* in the same directory
89-
- Pull the latest version from docker hub
90-
```sh
91-
docker compose pull
92-
```
93-
- Run
94-
```sh
95-
docker compose up -d
96-
```
97-
98-
##Debrid IP Blacklist
36+
37+
###Self Hosted
38+
39+
####From source
40+
41+
Clone the repository and enter the folder
42+
43+
```sh
44+
git clone https://github.com/g0ldyy/comet
45+
cd comet
46+
```
47+
48+
Install dependencies
49+
50+
```sh
51+
pip install poetry
52+
poetry install
53+
```
54+
55+
Start Comet
56+
57+
```sh
58+
poetry run python -m comet.main
59+
```
60+
61+
####With Docker
62+
63+
Simply run the Docker image after modifying the environment variables
64+
65+
```sh
66+
docker run --name comet -p 8000:8000 -d \
67+
-e FASTAPI_HOST=0.0.0.0 \
68+
-e FASTAPI_PORT=8000 \
69+
-e FASTAPI_WORKERS=1 \
70+
-e CACHE_TTL=86400 \
71+
-e DEBRID_PROXY_URL=http://127.0.0.1:1080 \
72+
-e INDEXER_MANAGER_TYPE=jackett \
73+
-e INDEXER_MANAGER_URL=http://127.0.0.1:9117 \
74+
-e INDEXER_MANAGER_API_KEY=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX \
75+
-e INDEXER_MANAGER_INDEXERS='["EXAMPLE1_CHANGETHIS", "EXAMPLE2_CHANGETHIS"]' \
76+
-e INDEXER_MANAGER_TIMEOUT=30 \
77+
-e GET_TORRENT_TIMEOUT=5 \
78+
g0ldyy/comet
79+
```
80+
81+
To update your container
82+
83+
Find your existing container name
84+
85+
```sh
86+
docker ps
87+
```
88+
89+
Stop your existing container
90+
91+
```sh
92+
docker stop<CONTAINER_ID>
93+
```
94+
95+
Remove your existing container
96+
97+
```sh
98+
docker rm<CONTAINER_ID>
99+
```
100+
101+
Pull the latest version from docker hub
102+
103+
```sh
104+
docker pull g0ldyy/comet
105+
```
106+
107+
Finally, re-run the docker run command
108+
109+
####With Docker Compose
110+
111+
1. Copy_compose.yaml_ in a directory
112+
2. Copy_env-sample_ to_.env_ in the same directory
113+
3. Pull the latest version from docker hub
114+
115+
```sh
116+
docker compose pull
117+
```
118+
119+
5. Run
120+
121+
```sh
122+
docker compose up -d
123+
```
124+
125+
###Debrid IP Blacklist
126+
99127
To bypass Real-Debrid's (or AllDebrid) IP blacklist, start a cloudflare-warp container:https://github.com/cmj2002/warp-docker
100128

101-
##Suggested indexers
129+
###Suggested indexers
130+
102131
When creating your Comet instance, it's important to choose the right indexers.
103132
This choice should be based on speed, quantity of content and whether the indexer is served by cloudflare or has a ratelimit system (which should be avoided).
104133

105134
My personal recommendation is: BitSearch, EZTV, The Pirate Bay, TheRARBG and YTS!
106135

107-
##Web UI Showcase
136+
###Web UI Showcase
137+
108138
<imgsrc="https://i.imgur.com/SaD365F.png" />
139+

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp