Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 731 Bytes

README.md

File metadata and controls

41 lines (28 loc) · 731 Bytes

🍿 Torrent Streaming

Watch video torrents online. Streams them directly to your browser.

Preview

Getting Started

cp client/.env.example client/.env
cp server/.env.example server/.env

npm install
npm start

CLI Scripts

# Add an email to the list of authorised emails
npm --prefix server run add-authorised-email username@domain.tld

# Add and update streams in database from YTS API
npm --prefix server run update-movies

Production

cp client/.env.example client/.env
cp server/.env.example server/.env

npm install
npm run build

npm add -g pm2
pm2 startup

pm2 start --name server /var/www/torrent-streaming/server/build/index.js
pm2 save