https://github.com/holmofy/live-torrent
https://github.com/holmofy/live-torrent
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/holmofy/live-torrent
- Owner: holmofy
- License: mit
- Created: 2021-10-31T16:34:32.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-11-01T12:53:07.000Z (almost 4 years ago)
- Last Synced: 2025-02-07T20:33:34.571Z (9 months ago)
- Language: Vue
- Size: 1.02 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# live-torrent
Search, explore and download torrent files online.
Watch online YTS movies with subtitles.
the backend package is [live-torrent-backend](https://github.com/Davenchy/live-torrent-backend)
## Install and Build
```
# clone the project
git clone https://github.com/Davenchy/live-torrent && cd live-torrent
# then install dependencies
npm install
# build frontend
npm run build
#######################################################################
# create the .env file more information in the .ENV section below
echo "PORT=\nOSUA=" > .env
# run the server
npm start
################################ OR ###################################
# run the server with env vars
PORT=???? OSUA=?????????? npm start
```
### The .ENV file
Live torrent needs some environment variables you can define them in the terminal or in a `.env` file
| Variable Name | Default Value | Description |
| ------------- | ------------------ | ------------------------------------ |
| PORT | 3000 | the server listening port |
| OSUA | TemporaryUserAgent | the opensubtitles.org api user agent |
for more information about the backend from [here](https://github.com/Davenchy/live-torrent-backend/wiki/How-to-use#environment-variables).
for more information about the OpenSubtitles.org api user agent from [here](https://trac.opensubtitles.org/projects/opensubtitles/wiki/DevReadFirst)
## Docker
- Docker repo: `davenchy/live-torrent`
`docker run --name live-torrent -d -p :8080 -e "OSUA=" live-torrent`
## Frontend API
> Soon