|
|
|
|
@@ -20,6 +20,9 @@ comparison to Stremio? That's because Torsearch uses the same source for media f
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Getting Started
|
|
|
|
|
For all pieces to work, you will need to serve the application over HTTPS. Running behind an SSL terminating
|
|
|
|
|
reverse proxy is the recommended approach.
|
|
|
|
|
|
|
|
|
|
1. Create a `compose.yml` file
|
|
|
|
|
```yaml
|
|
|
|
|
services:
|
|
|
|
|
@@ -116,7 +119,7 @@ TZ=America/Chicago
|
|
|
|
|
###################
|
|
|
|
|
# Symfony #
|
|
|
|
|
###################
|
|
|
|
|
# The external URL of the application where it can be reached by a browser.
|
|
|
|
|
# The external URL of the application where it can be reached by a browser. Should start with https://
|
|
|
|
|
APP_URL="<enter url>"
|
|
|
|
|
# Requried by Symfony Framework. Feel free to change.
|
|
|
|
|
APP_SECRET="70169beadfbc8101c393cbfbba27a313"
|
|
|
|
|
@@ -154,7 +157,7 @@ DATABASE_URL="mysql://${MYSQL_USER}:${MYSQL_PASSWORD}@${MYSQL_HOST}:3306/${MYSQL
|
|
|
|
|
###################
|
|
|
|
|
# Real Debrid #
|
|
|
|
|
###################
|
|
|
|
|
# Enter your Real Debrid API key is passed to Torrentio to retrieve download options
|
|
|
|
|
# Enter your Real Debrid API key which is passed to Torrentio to retrieve download options
|
|
|
|
|
REAL_DEBRID_KEY="<enter real debrid api key>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -185,10 +188,29 @@ AUTH_METHOD=form_login
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
3. Run `docker compose up -d`
|
|
|
|
|
3. Enter the `APP_URL` in the .env file
|
|
|
|
|
4. Enter the `REAL_DEBRID_KEY` in the .env file
|
|
|
|
|
5. Enter a new `WEB_PORT` if the default doesn't work for you
|
|
|
|
|
4. Run `docker compose up -d`
|
|
|
|
|
4. Visit the app in the browser
|
|
|
|
|
5. Create your first user
|
|
|
|
|
5. Create a user
|
|
|
|
|
6. Visit the Preferences page to set your filter. This filter is used whenever you don't choose a specific file to
|
|
|
|
|
download (e.g. downloading via Monitor or clicking the "Download Season", "Download Selected", or "Download Episode" buttons).
|
|
|
|
|
7. Start downloading media!
|
|
|
|
|
|
|
|
|
|
## Having issues?
|
|
|
|
|
Submit an issue in the repo, and I'll try to address it as soon as possible. I do have a full-time job and family, so my
|
|
|
|
|
time is limited, but I'll do my best!
|
|
|
|
|
|
|
|
|
|
## Notes
|
|
|
|
|
This is my first contribution to open-source, the community that's given me so much over the years!
|
|
|
|
|
This project has been my personal hobby project for the last 1.5 years. I've written and re-written it several times.
|
|
|
|
|
It's been my testing ground for trying new things, so if the code looks like shit, my bad. I'm a PHP developer by day and
|
|
|
|
|
tinkerer by night - this was my first go with Symfony/Twig components, tailwind, the Symfony RICH bundle, and a lot more.
|
|
|
|
|
At some point, I'll put together a contribution guide, so others can hack on it too.
|
|
|
|
|
|
|
|
|
|
No AI was used for development (only to generate a list of countries with their flag emojis). If the code is bad, it's my fault.
|
|
|
|
|
|
|
|
|
|
# Disclaimer
|
|
|
|
|
Torsearch does not host any media; it only combines API results from multiple sources to make browsing them easier.
|
|
|
|
|
Torsearch is not affiliated with Real Debrid, Torrentio, or TMDB.
|
|
|
|
|
|