Davenchy / live-torrent

Torrent Web Client

Home Page:http://live-torrent.herokuapp.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Live Torrent V4

Rebuilding Live Torrent with Next.js ❤️ flavor from scratch.

In progress

Search, explore, download and stream torrent files online.

Watch online YTS movies with subtitles in any language.

Now all in one fullstack package.

Install and Build

# clone the project
git clone --depth=1 --single-branch https://github.com/Davenchy/live-torrent.git

# change working directory
cd live-torrent

# then install dependencies
npm install

# now lets's build our project
npm run build

# finally get ready
npm start

Docker

Build Docker Image

docker build -t live-torrent-next .

Manage Docker Container

  • run/create a new container
docker run --name=live-torrent-next -d -p 3000:3000 live-torrent-next

OR use our pre-built image form docker hub davenchy/live-torrent-next:latest

docker run --name=live-torrent-next -d -p 3000:3000 davenchy/live-torrent-next:latest
  • start the container
docker start live-torrent-next
  • stop the container
docker stop live-torrent-next

Old LiveTorrent

  • To pull the old LiveTorrent docker image
docker pull davenchy/live-torrent
  • To run a container for the old LiveTorrent
docker run --name=live-torrent -d -p 3000:8080 -e "OSUA=<your opensubtitles user agent>" davenchy/live-torrent
  • The OSUA enviroment variable must be set to your opensubtitles user agent. It is not mandatory to set but it is required to fetch subtitles.

  • To get your own OpenSubtitles_User_Agent check this link

About

Torrent Web Client

http://live-torrent.herokuapp.com

License:MIT License


Languages

Language:TypeScript 80.7%Language:HTML 13.8%Language:Dockerfile 3.3%Language:JavaScript 1.4%Language:CSS 0.8%